.emf-d0cf-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.emf-d0cf-intro {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.emf-d0cf-tabs-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.emf-d0cf-tab-btn {
    flex: 1;
    min-width: 160px;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-family: inherit;
}

.emf-d0cf-tab-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.emf-d0cf-tab-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.emf-d0cf-tab-title {
    font-size: 14px;
    font-weight: 600;
}

.emf-d0cf-content {
    display: none;
}

.emf-d0cf-content.emf-d0cf-active {
    display: block;
    animation: emfD0cfFadeIn 0.35s ease;
}

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

.emf-d0cf-content-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.emf-d0cf-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.emf-d0cf-box {
    border: 1px solid #c8e8f3;
    box-shadow: 0 2px 8px rgba(110, 193, 228, 0.08);
}

.emf-d0cf-box-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.emf-d0cf-box-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .emf-d0cf-tabs-nav {
        flex-direction: column;
    }

    .emf-d0cf-tab-btn {
        min-width: 100%;
    }

    .emf-d0cf-boxes-grid {
        grid-template-columns: 1fr;
    }
}
