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

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

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

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

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

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

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

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

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

.detail-10-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.detail-10-description {
    margin: 0;
    animation: fadeInUp 1.5s ease-out;
}

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

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

    .detail-10-header {
        margin-bottom: 48px !important;
    }

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

    .detail-10-card {
        width: 100% !important;
        max-width: 348px !important;
    }

    .detail-10-image-wrapper {
        width: 100% !important;
        max-width: 348px !important;
        height: 200px !important;
        margin-bottom: 32px !important;
    }
}

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

    .detail-10-header {
        max-width: 100% !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }

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

    .detail-10-card {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .detail-10-image-wrapper {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 0 !important;
    }
}