.about-hero {
    padding: 64px 0 34px;
}

.about-hero-box {
    background:
        radial-gradient(circle at top left, rgba(146, 209, 224, .35), transparent 34%),
        linear-gradient(135deg, #ffffff, #eaf8fb);
    border: 1px solid var(--dr-border);
    border-radius: 34px;
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    align-items: center;
    box-shadow: 0 24px 70px rgba(18, 49, 58, .07);
}

.about-hero-content > span {
    display: inline-flex;
    color: var(--dr-primary-dark);
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 999px;
    padding: 7px 16px;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-hero-content h1 {
    color: var(--dr-dark);
    font-weight: 900;
    line-height: 1.45;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 8px;
}

.about-hero-content h2 {
    color: var(--dr-primary-dark);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-hero-content p {
    color: var(--dr-muted);
    line-height: 2.2;
    max-width: 760px;
    margin-bottom: 24px;
}

.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-doctor-card {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 30px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(18, 49, 58, .08);
}

.about-doctor-card img,
.about-doctor-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    object-fit: cover;
}

.about-doctor-placeholder {
    background: linear-gradient(135deg, #e0f5f9, #ffffff);
    color: var(--dr-primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 900;
}

.about-doctor-placeholder i {
    font-size: 76px;
}

.about-doctor-info {
    margin: -42px 16px 0;
    position: relative;
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 45px rgba(18, 49, 58, .10);
}

.about-doctor-info strong {
    display: block;
    color: var(--dr-dark);
    font-weight: 900;
    margin-bottom: 6px;
}

.about-doctor-info span {
    color: var(--dr-muted);
    font-size: 14px;
    line-height: 1.8;
}

.about-section {
    padding: 34px 0 76px;
}

.about-main-card,
.about-info-box,
.about-contact-box {
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(18, 49, 58, .05);
}

.about-content-block:not(:last-child) {
    margin-bottom: 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dr-border);
}

.about-content-block h2 {
    color: var(--dr-dark);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 16px;
}

.about-rich-text {
    color: var(--dr-text);
    line-height: 2.35;
    font-size: 16px;
}

.about-rich-text p {
    margin-bottom: 16px;
}

.about-rich-text ul {
    padding-right: 22px;
    margin-bottom: 0;
}

.about-rich-text li {
    margin-bottom: 10px;
}

.about-sidebar {
    position: sticky;
    top: 105px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-info-box h3,
.about-contact-box h3 {
    color: var(--dr-dark);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 18px;
}

.about-info-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--dr-border);
}

.about-info-item:last-child {
    border-bottom: 0;
}

.about-info-item span {
    color: var(--dr-muted);
    min-width: 88px;
}

.about-info-item strong {
    color: var(--dr-dark);
    text-align: left;
    line-height: 1.8;
}

.about-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-specialties span {
    background: #e0f5f9;
    color: var(--dr-primary-dark);
    border: 1px solid var(--dr-border);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    font-size: 13px;
}

.about-contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #e0f5f9;
    color: var(--dr-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.about-contact-box p {
    color: var(--dr-muted);
    line-height: 2;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .about-hero-box {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        position: static;
    }

    .about-doctor-card {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 42px 0 24px;
    }

    .about-hero-box {
        padding: 24px;
        border-radius: 26px;
    }

    .about-section {
        padding: 24px 0 56px;
    }

    .about-main-card,
    .about-info-box,
    .about-contact-box {
        padding: 22px;
        border-radius: 24px;
    }

    .about-info-item {
        flex-direction: column;
        gap: 4px;
    }

    .about-info-item strong {
        text-align: right;
    }
}
