@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-layout-11 {
    width: 100%;
    box-sizing: border-box;
}

.detail-11-container {
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-11-header {
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
}

.detail-11-main-title {
    margin: 0 !important;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.detail-11-description {
    margin-top: 16px;
}

.detail-11-description ul,
.detail-11-description ol {
    padding-left: 0;
    margin: 0;
    list-style-position: inside;
}

.detail-11-banner {
    width: 100%;
    height: 600px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.detail-11-banner .video-custom-container {
    width: 100%;
    height: 100%;
}

.detail-11-banner .video-custom-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-full-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-full-container iframe,
.video-full-container object,
.video-full-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.detail-11-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-11-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detail-11-card {
    width: 100%;
}

.detail-11-card-image {
    width: 100%;
    height: 300px;
    margin-bottom: 24px;
    overflow: hidden;
    animation: fadeIn 4s ease-out;
}

.detail-11-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-11-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-11-card-title {
    margin: 0;
    animation: fadeInUp 1.5s ease-out;
}

.detail-11-card-desc {
    margin: 0;
    animation: fadeInUp 1.5s ease-out;
}

.detail-11-card-desc ul,
.detail-11-card-desc ol {
    padding-left: 0;
    margin: 0;
    list-style-position: inside;
}

@media (min-width: 768px) and (max-width: 1024.98px) {
    .detail-11-container {
        padding: 80px 24px !important;
    }

    .detail-11-header {
        margin-bottom: 48px !important;
        text-align: center !important;
    }

    .detail-11-banner {
        width: 100% !important;
        height: 365px !important;
        margin: 0 auto 32px auto !important;
    }

    .detail-11-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .detail-11-card {
        width: 100% !important;
    }

    .detail-11-card-image {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 32px !important;
    }
}

@media (max-width: 767.98px) {
    .detail-11-container {
        padding: 48px 16px !important;
    }

    .detail-11-header {
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    .detail-11-banner {
        width: 100% !important;
        height: 200px !important;
        margin: 0 0 24px 0 !important;
    }

    .detail-11-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .detail-11-card {
        width: 100% !important;
    }

    .detail-11-card-image {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 32px !important;
    }
}