.about-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #f3f4f6;
}

.about-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #d1d5db;
    margin-bottom: 16px;
}

.about-empty h5 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.about-empty p {
    color: #9ca3af;
}

/* hero */
.about-hero {
    background: var(--t-header-bg);
    border-radius: 20px;
    padding: 36px 32px;
    margin-bottom: 32px;
    text-align: center;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: color-mix(in srgb, var(--t-primary) 20%, transparent);
    color: var(--t-primary);
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
}

.about-hero-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* content */
.about-body {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #f3f4f6;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

.about-img-float {
    float: left;
    width: 380px;
    margin-right: 0;
    margin-left: 28px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.about-img-float img {
    display: block;
    width: 100%;
    height: auto;
}

.about-content {
    font-size: .95rem;
    line-height: 2;
    color: #374151;
}

    .about-content h1, .about-content h2, .about-content h3 {
        color: #111827;
        font-weight: 800;
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .about-content p {
        margin-bottom: 14px;
    }

    .about-content ul, .about-content ol {
        padding-right: 20px;
        margin-bottom: 14px;
    }

    .about-content li {
        margin-bottom: 6px;
    }

    .about-content strong {
        color: #111827;
    }

@media (max-width: 768px) {
    .about-img-float {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .about-hero {
        padding: 28px 20px;
    }

    .about-body {
        padding: 24px 20px;
    }
}
