.about-us {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem 0;
}

.about-hero {
    margin-bottom: 2.5rem;
}

.about-hero__content {
    display: grid;
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}

.about-section__content {
    max-width: 920px;
    margin: 0 auto;
}

.about-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.about-hero__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0.35rem 0 0;
    color: #4a5568;
}

.about-hero__header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.about-hero__name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.about-hero__links {
    display: inline-flex;
    gap: 0.65rem;
}

.about-hero__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-hero__icon svg {
    width: 24px;
    height: 24px;
}

.about-hero__icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #1f2937;
}

.about-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.about-section {
    padding: 1.75rem 0;
}

.about-section h2 {
    margin-bottom: 0.5rem;
}

.about-section h3 {
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
}

.about-section p {
    margin-bottom: 1rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.1rem;
    height: 100%;
}

.about-card h3 {
    margin-bottom: 0.5rem;
}

.about-section h2 {
    font-size: 1.5rem;
}

.about-credentials h3 {
    font-size: 1.25rem;
}

.about-list {
    padding-left: 1.1rem;
    margin: 0.75rem 0 0;
    color: #1f2937;
}

.about-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .about-us {
        padding: 1.5rem 1rem 0;
    }

    .about-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero__header {
        align-items: center;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .about-hero__name-row {
        flex-direction: column;
        align-items: center;
    }

    .about-section {
        padding: 1.5rem 0;
    }

    .about-hero__media {
        max-width: 220px;
        margin: 0 auto;
    }
}
