.blog-author {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    margin: clamp(48px, 6vw, 80px) 0;
    padding: clamp(28px, 3vw, 44px) 0 0;
    isolation: isolate;
}

.blog-author__decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background:
        linear-gradient(90deg, rgba(108, 197, 251, 0.85) 0%, rgba(108, 197, 251, 0.4) 14%, rgba(108, 197, 251, 0) 38%);
}

.blog-author__decor::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6CC5FB;
    box-shadow: 0 0 12px rgba(108, 197, 251, 0.7);
}

.blog-author__media {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blog-author__photo-link {
    position: relative;
    display: block;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    isolation: isolate;
}

.blog-author__photo-link::before {
    content: '';
    position: absolute;
    inset: 8% 4% 12% 4%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 60%, rgba(108, 197, 251, 0.45) 0%, rgba(108, 197, 251, 0.12) 50%, rgba(108, 197, 251, 0) 78%),
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    filter: blur(10px);
    z-index: 0;
}

.blog-author__photo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.blog-author__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.blog-author__photo--portrait img {
    object-position: center 22%;
}

.blog-author__photo--transparent img {
    object-position: center top;
}

.blog-author__photo--placeholder {
    background:
        radial-gradient(circle at 50% 60%, rgba(108, 197, 251, 0.25) 0%, rgba(108, 197, 251, 0) 70%),
        rgba(255, 255, 255, 0.06);
}

.blog-author__photo--placeholder {
    background:
        radial-gradient(circle at 50% 60%, rgba(108, 197, 251, 0.25) 0%, rgba(108, 197, 251, 0) 70%),
        rgba(255, 255, 255, 0.06);
}

.blog-author__body {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 14px);
    min-width: 0;
}

.blog-author__eyebrow {
    color: #6CC5FB;
    font-size: 11px;
    line-height: 1.2;
    font-weight: var(--md-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-author__name {
    margin: 0;
    color: var(--md-color-text-primary);
    font-size: clamp(26px, 2.6rem, 40px);
    line-height: 1.1;
    font-weight: var(--md-font-weight-bold);
    text-wrap: balance;
}

.blog-author__name a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.45s ease;
}

.blog-author__name a:hover {
    background-size: 100% 1px;
}

.blog-author__specialty {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.45;
    font-weight: var(--md-font-weight-medium);
}

.blog-author__experience {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 4px 0 0;
}

.blog-author__experience-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: var(--md-font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.blog-author__experience-value {
    color: var(--md-color-text-primary);
    font-size: 16px;
    font-weight: var(--md-font-weight-semibold);
    font-feature-settings: 'tnum';
}

.blog-author__description {
    margin: clamp(8px, 1vw, 14px) 0 0;
    max-width: 600px;
}

.blog-author__description p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    font-weight: var(--md-font-weight-light);
    text-wrap: pretty;
}

.blog-author__description p:last-child {
    margin-bottom: 0;
}

.blog-author__education {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: clamp(14px, 1.6vw, 20px) 0 0;
    padding-top: clamp(14px, 1.6vw, 20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-author__education-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: var(--md-font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.blog-author__education-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-author__education-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.5;
}

.blog-author__education-period {
    color: #6CC5FB;
    font-weight: var(--md-font-weight-semibold);
    font-feature-settings: 'tnum';
    letter-spacing: 0.4px;
    font-size: 13px;
}

.blog-author__education-place {
    font-weight: var(--md-font-weight-light);
}

.blog-author__education-type {
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--md-font-weight-medium);
    margin-right: 4px;
}

.blog-author__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(14px, 1.6vw, 20px);
    align-self: flex-start;
    color: #6CC5FB;
    font-size: 12px;
    font-weight: var(--md-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    text-decoration: none;
}

.blog-author__cta-arrow {
    width: 22px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.3s ease;
}

.blog-author__cta-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.blog-author__cta:hover .blog-author__cta-arrow {
    width: 36px;
}

@media (max-width: 767.98px) {
    .blog-author {
        grid-template-columns: 1fr;
    }

    .blog-author__photo-link {
        max-width: 200px;
        margin: 0 auto;
    }

    .blog-author__name {
        font-size: clamp(22px, 6vw, 28px);
    }

    .blog-author__education-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
