﻿.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 10px 10px auto;
}

.profile-card__avatar {
    width: 320px;
    height: 320px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-image: url("../../assets/img/avatar2.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.profile-card__name {
    margin: 12px 0 4px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.profile-card__role {
    margin: 0 0 10px;
    color: var(--muted);
}

.profile-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

@media (max-width: 768px) {

    .profile-card__avatar {
        width: 280px;
        height: 280px;
    }
}

.hero__right {
    display: flex;
    justify-content: flex-end;
}

.hero {
    margin-top: 16px;
    padding: 22px;
    border-radius: var(--r);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.hero__kicker {
    margin: 0 0 10px;
    color: var(--muted);
}

.hero__title {
    margin: 0 0 10px;
    font-size: 44px;
    line-height: 1.05;
}

.hero__subtitle {
    margin: 0 0 16px;
    color: var(--muted);
    max-width: 72ch;
}

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

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

@media (max-width: 560px) {
    .hero__title {
        font-size: 36px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 18px;
    }

    .hero__title {
        font-size: 32px;
    }
}

.quick-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.26);
    padding-bottom: 2px;
    transition: color 160ms ease, border-color 160ms ease;
}

.quick-link:hover {
    color: rgba(255, 176, 0, 0.95);
    border-color: rgba(255, 176, 0, 0.55);
}

.quick-links {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .quick-links {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

.about {
    grid-column: 1 / -1;
    gap: 14px;
}

.about__panel {
    width: 100%;
    padding: 18px;
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.about__text {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.84);
}