.cc-author-page {
    padding: 32px 0 64px;
}

.cc-author-page__wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.cc-author-page__hero {
    margin-bottom: 40px;
}

.cc-author-page__header {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    background: linear-gradient(180deg, #08112d 0%, #09163b 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
}

.cc-author-page__photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-author-page__photo img {
    width: 260px !important;
    height: 260px !important;
    max-width: 260px !important;
    object-fit: cover !important;
    border-radius: 24px;
    display: block;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cc-author-page__info {
    min-width: 0;
}

.cc-author-page__title {
    margin: 0 0 10px;
    font-size: 64px;
    line-height: 1.02;
    color: #fff;
}

.cc-author-page__role {
    font-size: 28px;
    line-height: 1.3;
    color: #d8def5;
    margin-bottom: 18px;
}

.cc-author-page__meta,
.cc-author-page__specialties,
.cc-author-page__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.cc-author-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    font-size: 16px;
    font-weight: 700;
}

.cc-author-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.cc-author-page__socials a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.cc-author-page__socials a:hover {
    color: #fff;
}

.cc-author-page__bio {
    color: #e5e9ff;
    font-size: 22px;
    line-height: 1.7;
    max-width: 900px;
}

.cc-author-page__bio p {
    margin: 0 0 14px;
}

.cc-author-page__reviews {
    margin-top: 24px;
}

.cc-author-page__reviews-title {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.15;
    color: #fff;
}

.cc-author-page__reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cc-author-card {
    background: #08112d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cc-author-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

.cc-author-card__link {
    display: block;
    text-decoration: none;
}

.cc-author-card__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.cc-author-card__content {
    padding: 20px;
}

.cc-author-card__title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .cc-author-page__header {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .cc-author-page__photo img {
        width: 200px !important;
        height: 200px !important;
        max-width: 200px !important;
    }

    .cc-author-page__title {
        font-size: 48px;
    }

    .cc-author-page__role {
        font-size: 24px;
    }

    .cc-author-page__bio {
        font-size: 20px;
    }

    .cc-author-page__reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cc-author-page {
        padding: 20px 0 48px;
    }

    .cc-author-page__wrap {
        padding: 0 14px;
    }

    .cc-author-page__header {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 22px;
    }

    .cc-author-page__photo {
        justify-content: flex-start;
    }

    .cc-author-page__photo img {
        width: 150px !important;
        height: 150px !important;
        max-width: 150px !important;
        border-radius: 18px;
    }

    .cc-author-page__title {
        font-size: 34px;
    }

    .cc-author-page__role {
        font-size: 20px;
    }

    .cc-author-page__bio {
        font-size: 18px;
        line-height: 1.65;
    }

    .cc-author-page__reviews-title {
        font-size: 30px;
    }

    .cc-author-page__reviews-grid {
        grid-template-columns: 1fr;
    }

    .cc-author-card__thumb img {
        height: 200px;
    }

    .cc-author-card__title {
        font-size: 22px;
    }
}
