.alt-author-profile {
    --alt-author-green: #1f8f5f;
    --alt-author-green-dark: #146847;
    --alt-author-ink: #152126;
    --alt-author-muted: #60717a;
    --alt-author-border: rgba(21, 33, 38, 0.1);
    --alt-author-surface: #f5f2ea;
    --alt-author-card: #ffffff;
    --alt-author-shadow: 0 18px 45px rgba(21, 33, 38, 0.12);
    background:
        radial-gradient(circle at top left, rgba(31, 143, 95, 0.08), transparent 24%),
        linear-gradient(180deg, #f1ede4 0%, #fbf9f4 26%, #ffffff 100%);
    color: var(--alt-author-ink);
    padding-bottom: 72px;
}

.alt-author-profile__hero {
    position: relative;
    min-height: 380px;
    padding: 88px 0 132px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(12, 34, 40, 0.88), rgba(31, 143, 95, 0.34)),
        var(--alt-author-hero-image, linear-gradient(135deg, #204a52, #1f8f5f));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.alt-author-profile__hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -90px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(1px);
}

.alt-author-profile__hero-inner {
    position: relative;
    z-index: 1;
}

.alt-author-profile__hero-shell,
.alt-author-profile__shell {
    width: min(100% - 48px, 1560px);
    max-width: 1560px;
    margin-left: auto;
    margin-right: auto;
}

.alt-author-profile__hero-copy {
    max-width: 680px;
}

.alt-author-profile__eyebrow,
.alt-author-profile__panel-kicker {
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.alt-author-profile__title {
    margin: 0 0 12px;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 0.96;
    font-weight: 800;
}

.alt-author-profile__subtitle {
    margin: 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
}

.alt-author-profile__dot {
    padding: 0 10px;
}

.alt-author-profile__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.alt-author-profile__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.alt-author-profile__cta:hover,
.alt-author-profile__cta:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.alt-author-profile__cta--primary {
    background: #31b274;
    color: #fff;
}

.alt-author-profile__cta--primary:hover,
.alt-author-profile__cta--primary:focus {
    background: #2aa469;
    color: #fff;
}

.alt-author-profile__cta--secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.alt-author-profile__shell {
    position: relative;
    margin-top: -92px;
    z-index: 2;
}

.alt-author-profile__masthead {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.alt-author-profile__avatar-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    margin-top: -34px;
    padding: 28px 26px;
    border-radius: 28px;
    border: 1px solid var(--alt-author-border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--alt-author-shadow);
}

.alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar {
    width: 100%;
    max-width: 228px;
    aspect-ratio: 1 / 1;
    padding: 10px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(21, 33, 38, 0.08);
}

.alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.alt-author-profile__masthead-main {
    display: grid;
    gap: 24px;
}

.alt-author-profile__identity-card,
.alt-author-profile__stat-card,
.alt-author-profile__panel {
    background: var(--alt-author-card);
    border: 1px solid var(--alt-author-border);
    box-shadow: var(--alt-author-shadow);
}

.alt-author-profile__identity-card {
    border-radius: 24px;
    padding: 28px 30px;
}

.alt-author-profile__identity-top {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

.alt-author-profile__name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.alt-author-profile__name-row h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1;
}

.alt-author-profile__verified-badge,
.alt-author-profile__package-pill,
.alt-author-profile__specialty-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 700;
}

.alt-author-profile__verified-badge {
    padding: 8px 14px;
    background: rgba(31, 143, 95, 0.12);
    color: var(--alt-author-green-dark);
}

.alt-author-profile__package-pill {
    padding: 10px 16px;
    background: #f1ede4;
    color: var(--alt-author-ink);
}

.alt-author-profile__location,
.alt-author-profile__lead {
    margin: 0;
    color: var(--alt-author-muted);
}

.alt-author-profile__location i {
    margin-right: 8px;
    color: var(--alt-author-green);
}

.alt-author-profile__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
}

/* ALT AUTHOR VARIANT A COMPACT TOP BIO BEGIN */
.alt-author-profile .alt-author-inline-bio {
    max-width: 72ch;
}
/* ALT AUTHOR VARIANT A COMPACT TOP BIO END */

.alt-author-profile__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.alt-author-profile__stat-card {
    border-radius: 20px;
    padding: 20px 22px;
}

.alt-author-profile__stat-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
}

.alt-author-profile__stat-label {
    display: block;
    margin-bottom: 10px;
    color: var(--alt-author-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.alt-author-profile__content-grid {
    display: grid;
    grid-template-columns: minmax(300px, 336px) minmax(0, 1fr);
    gap: 32px;
    margin-top: 34px;
    align-items: start;
}

.alt-author-profile__sidebar,
.alt-author-profile__main {
    min-width: 0;
}

.alt-author-profile__side-stack {
    display: grid;
    gap: 22px;
}

.alt-author-profile__panel {
    border-radius: 24px;
    padding: 26px;
}

.alt-author-profile__panel--main {
    padding: 32px;
}

.alt-author-profile__panel--reviews {
    margin-top: 28px;
}

.alt-author-profile__panel-head h3 {
    margin: 0;
    font-size: 28px;
}

.alt-author-profile__section + .alt-author-profile__section {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--alt-author-border);
}

.alt-author-profile__info-list,
.alt-author-profile__verification-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.alt-author-profile__info-list li,
.alt-author-profile__verification-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(21, 33, 38, 0.08);
}

.alt-author-profile__info-list li:last-child,
.alt-author-profile__verification-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.alt-author-profile__info-list span,
.alt-author-profile__verification-list span {
    color: var(--alt-author-muted);
}

.alt-author-profile__verification-list li.is-verified i {
    color: var(--alt-author-green);
}

.alt-author-profile__verification-list li.is-unverified i {
    color: #d95a4a;
}

.alt-author-profile__specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.alt-author-profile__specialty-pill {
    padding: 10px 14px;
    background: #eff4ef;
    color: var(--alt-author-green-dark);
}

.alt-author-profile__specialty-pill.is-muted {
    background: #f2f2f2;
    color: var(--alt-author-muted);
}

.alt-author-profile__about-copy,
.alt-author-profile__services-wrap {
    margin-top: 18px;
}

.alt-author-profile__services-wrap {
    padding: 32px;
    border: 1px solid rgba(21, 33, 38, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(249, 247, 241, 0.92), rgba(255, 255, 255, 0.98)),
        #fff;
}

.alt-author-profile__about-copy,
.alt-author-profile__empty-copy {
    color: var(--alt-author-muted);
    line-height: 1.75;
}

.alt-author-profile .nav.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 32px;
    border: 0;
}

.alt-author-profile .nav.nav-tabs > li {
    float: none;
    margin: 0;
}

.alt-author-profile .nav.nav-tabs > li > a {
    margin: 0;
    padding: 13px 20px;
    border-radius: 14px;
    border: 1px solid rgba(21, 33, 38, 0.12);
    background: #fff;
    color: var(--alt-author-ink);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(21, 33, 38, 0.06);
}

.alt-author-profile .nav.nav-tabs > li.active > a,
.alt-author-profile .nav.nav-tabs > li.active > a:focus,
.alt-author-profile .nav.nav-tabs > li.active > a:hover,
.alt-author-profile .nav.nav-tabs > li > a:hover,
.alt-author-profile .nav.nav-tabs > li > a:focus {
    border-color: var(--alt-author-green);
    background: var(--alt-author-green);
    color: #fff;
}

.alt-author-profile .tab-content {
    border-top: 1px solid rgba(21, 33, 38, 0.08);
    padding-top: 30px;
}

.alt-author-profile .tab-content > .tab-pane {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.alt-author-profile .tab-content > .tab-pane.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.alt-author-profile .author-sv-list {
    opacity: 1;
}

.alt-author-profile .author-sv-list > h5 {
    margin: 0;
    padding: 28px 30px;
    border: 1px dashed rgba(21, 33, 38, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--alt-author-ink);
    font-size: 16px;
}

.alt-author-profile .search-result-page,
.alt-author-profile .search-result-page .st-results,
.alt-author-profile .search-result-page .modern-search-result {
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.alt-author-profile .service-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 0;
}

.alt-author-profile .item-service,
.alt-author-profile .service-list-wrapper > [class*="col-"] {
    margin-bottom: 0;
}

.alt-author-profile .service-list-wrapper > [class*="col-"] {
    width: auto;
    max-width: none;
    float: none;
    margin: 0;
    padding: 0;
}

.alt-author-profile .service-list-wrapper > [class*="col-"],
.alt-author-profile .service-list-wrapper > *,
.alt-author-profile .service-list-wrapper .item-tour,
.alt-author-profile .service-list-wrapper .item.item-rental,
.alt-author-profile .service-list-wrapper .item.item-car {
    display: block;
    min-width: 0;
}

.alt-author-profile .service-list-wrapper .services-item,
.alt-author-profile .service-list-wrapper .services-item .item,
.alt-author-profile .service-list-wrapper .item,
.alt-author-profile .service-list-wrapper .service-border {
    height: 100%;
}

.alt-author-profile .service-list-wrapper .service-border {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(21, 33, 38, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(21, 33, 38, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.alt-author-profile .service-list-wrapper .service-border:hover,
.alt-author-profile .service-list-wrapper .service-border:focus-within {
    transform: translateY(-4px);
    border-color: rgba(31, 143, 95, 0.25);
    box-shadow: 0 24px 54px rgba(21, 33, 38, 0.14);
}

.alt-author-profile .service-list-wrapper .featured-image {
    position: relative;
    overflow: hidden;
    background: #dfe8df;
}

.alt-author-profile .service-list-wrapper .featured-image > a,
.alt-author-profile .service-list-wrapper .featured-image > a img,
.alt-author-profile .service-list-wrapper .featured-image img {
    display: block;
    width: 100%;
}

.alt-author-profile .service-list-wrapper .featured-image img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.alt-author-profile .service-list-wrapper .content-item {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px 24px 22px;
}

.alt-author-profile .service-list-wrapper .content-item .title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
}

.alt-author-profile .service-list-wrapper .content-item .title a {
    color: var(--alt-author-ink);
}

.alt-author-profile .service-list-wrapper .content-item .title a:hover,
.alt-author-profile .service-list-wrapper .content-item .title a:focus {
    color: var(--alt-author-green-dark);
    text-decoration: none;
}

.alt-author-profile .service-list-wrapper .content-item .service-location,
.alt-author-profile .service-list-wrapper .content-item .sub-title,
.alt-author-profile .service-list-wrapper .content-item .car-type,
.alt-author-profile .service-list-wrapper .content-item .service-review,
.alt-author-profile .service-list-wrapper .content-item .reviews,
.alt-author-profile .service-list-wrapper .content-item .amenities,
.alt-author-profile .service-list-wrapper .content-item .car-equipments {
    color: var(--alt-author-muted);
}

.alt-author-profile .service-list-wrapper .content-item .service-location,
.alt-author-profile .service-list-wrapper .content-item .sub-title,
.alt-author-profile .service-list-wrapper .content-item .car-type {
    margin-bottom: 14px;
}

.alt-author-profile .service-list-wrapper .content-item .section-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(21, 33, 38, 0.08);
}

.alt-author-profile .service-list-wrapper .content-item .price-wrapper,
.alt-author-profile .service-list-wrapper .content-item .service-price,
.alt-author-profile .service-list-wrapper .content-item .price-sale,
.alt-author-profile .service-list-wrapper .content-item .price {
    color: var(--alt-author-ink);
}

.alt-author-profile .service-list-wrapper .content-item .price,
.alt-author-profile .service-list-wrapper .content-item .service-price .price {
    font-weight: 800;
}

.alt-author-profile .service-list-wrapper .content-item .unit,
.alt-author-profile .service-list-wrapper .content-item .summary,
.alt-author-profile .service-list-wrapper .content-item .review {
    color: var(--alt-author-muted);
}

.alt-author-profile .author-pag {
    float: none;
    margin-top: 20px;
}

.alt-author-profile .st-review-new {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--alt-author-border);
}

.alt-author-profile__panel--reviews .st-review-new {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.alt-author-profile .st-review-new > h5 {
    margin: 0 0 22px;
    font-size: 28px;
    color: var(--alt-author-ink);
}

.alt-author-profile .author-review-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.alt-author-profile .author-review-panel li {
    margin: 0;
}

.alt-author-profile .author-review-panel li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(21, 33, 38, 0.1);
    border-radius: 14px;
    background: #fff;
    color: var(--alt-author-ink);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(21, 33, 38, 0.05);
}

.alt-author-profile .author-review-panel-list {
    padding: 28px 30px;
    border: 1px solid rgba(21, 33, 38, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--alt-author-muted);
}

.alt-author-profile .author-review-panel-list .author-review-detail {
    border: 1px solid rgba(21, 33, 38, 0.08);
    border-radius: 18px;
    padding: 22px 24px;
    background: #fbfaf7;
}

.alt-author-profile .author-review-panel-list .author-review-detail .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin: 0;
}

.alt-author-profile .author-review-panel-list .author-review-detail [class*="col-"] {
    width: auto;
    max-width: none;
    float: none;
    padding: 0;
}

.alt-author-profile .author-review-panel-list .stm-dealer-rate-part {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(21, 33, 38, 0.08);
}

.alt-author-profile .author-review-panel-list .author-review-detail [class*="col-"]:last-child .stm-dealer-rate-part,
.alt-author-profile .author-review-panel-list .author-review-detail .row > [class*="col-"]:nth-last-child(-n + 2) .stm-dealer-rate-part {
    border-bottom: 0;
}

.alt-author-profile .author-review-panel-list .stm-dealer-rate-part h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: var(--alt-author-ink);
}

.alt-author-profile .author-review-panel-list .stm-dealer-rate-part .process {
    height: 8px;
    border-radius: 999px;
    background: rgba(21, 33, 38, 0.08);
    overflow: hidden;
}

.alt-author-profile .author-review-panel-list .stm-dealer-rate-part .process .inner {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2d9f6b, #1f8f5f);
}

.alt-author-profile .author-review-panel-list .stm-dealer-rate-part .statistic {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 15px;
    font-weight: 700;
}

.alt-author-profile .author-review-panel-list .booking-item-reviews.review-list {
    margin-top: 28px;
    padding-top: 0;
    border-top: 0;
}

.alt-author-profile .author-review-panel-list .booking-item-reviews.review-list .comment-item + .comment-item {
    border-top: 1px solid rgba(21, 33, 38, 0.08);
}

.alt-author-profile .booking-item-reviews.review-list .comment-item {
    padding-top: 24px;
    padding-bottom: 24px;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item:first-child {
    padding-top: 0;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item .like {
    margin-top: 0;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item-head .media {
    display: flex;
    gap: 14px;
    align-items: center;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item-head .media-left {
    flex: 0 0 auto;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item-head .media-left img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.alt-author-profile .booking-item-reviews.review-list .comment-item-head .media-body {
    min-width: 0;
}

.alt-author-profile .booking-item-reviews.review-list .review-star,
.alt-author-profile .booking-item-reviews.review-list .st-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.alt-author-profile .booking-item-reviews.review-list .detail {
    line-height: 1.7;
}

.alt-author-profile .author-review-panel-list .media-heading,
.alt-author-profile .author-review-panel-list .title,
.alt-author-profile .author-review-panel-list .rate,
.alt-author-profile .author-review-panel-list .statistic {
    color: var(--alt-author-ink);
}

.alt-author-profile .author-review-panel-list .date,
.alt-author-profile .author-review-panel-list .like,
.alt-author-profile .author-review-panel-list .detail,
.alt-author-profile .author-review-panel-list .review,
.alt-author-profile .author-review-panel-list .summary {
    color: var(--alt-author-muted);
}

.alt-author-profile .author-review-panel li.active a,
.alt-author-profile .author-review-panel li a:hover,
.alt-author-profile .author-review-panel li a:focus {
    background: var(--alt-author-green);
    color: #fff;
    text-decoration: none;
}

.alt-author-profile .pagination > li > a,
.alt-author-profile .pagination > li > span,
.alt-author-profile .loop-pagination a,
.alt-author-profile .loop-pagination span {
    border-radius: 999px !important;
}

@media (max-width: 1199px) {
    .alt-author-profile__masthead {
        grid-template-columns: 1fr;
    }

    .alt-author-profile__content-grid {
        grid-template-columns: 1fr;
    }

    .alt-author-profile__avatar-wrap {
        justify-content: flex-start;
        margin-top: 0;
        min-height: 0;
    }

    .alt-author-profile__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alt-author-profile__services-wrap {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .alt-author-profile {
        padding-bottom: 48px;
    }

    .alt-author-profile__hero {
        min-height: 320px;
        padding: 72px 0 120px;
    }

    .alt-author-profile__hero-shell,
    .alt-author-profile__shell {
        width: min(100% - 28px, 100%);
    }

    .alt-author-profile__shell {
        margin-top: -72px;
    }

    .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar {
        max-width: 160px;
        border-radius: 22px;
    }

    .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar > img {
        border-radius: 16px;
    }

    .alt-author-profile__identity-card,
    .alt-author-profile__panel,
    .alt-author-profile__panel--main {
        padding: 22px;
    }

    .alt-author-profile__name-row h2 {
        font-size: 28px;
    }

    .alt-author-profile__stats-grid {
        grid-template-columns: 1fr;
    }

    .alt-author-profile__services-wrap,
    .alt-author-profile .author-review-panel-list {
        padding: 20px;
    }

    .alt-author-profile .service-list-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .alt-author-profile .author-review-panel-list .author-review-detail .row {
        grid-template-columns: 1fr;
    }

    .alt-author-profile .author-review-panel-list .author-review-detail .row > [class*="col-"] .stm-dealer-rate-part {
        border-bottom: 1px solid rgba(21, 33, 38, 0.08);
    }

    .alt-author-profile .author-review-panel-list .author-review-detail .row > [class*="col-"]:last-child .stm-dealer-rate-part {
        border-bottom: 0;
    }

    .alt-author-profile .booking-item-reviews.review-list .comment-item-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ALT AUTHOR PROFILE COMPACT LAYOUT BEGIN */

/*
 * Activity-Life.com
 * Public author / partner profile compact refinement.
 *
 * Scope:
 * - child theme only
 * - CSS only
 * - no Traveler parent theme modification
 *
 * Purpose:
 * - reduce vertical height on desktop/tablet
 * - compact profile metadata
 * - reduce sidebar card weight
 * - keep mobile readable
 */

/* Root-level safety: apply only inside Activity-Life author profile wrappers. */
.alt-author-profile,
.alt-profile-page,
.alt-author-page,
.activity-life-author-profile {
    --alt-author-compact-card-radius: 20px;
    --alt-author-compact-gap: 22px;
    --alt-author-compact-muted-bg: #f5f7f6;
    --alt-author-compact-text: #26332f;
}

/* Hero and header vertical compression. */
.alt-author-profile .alt-author-hero,
.alt-author-profile .alt-profile-hero,
.alt-profile-page .alt-author-hero,
.alt-profile-page .alt-profile-hero,
.alt-author-page .alt-author-hero,
.alt-author-page .alt-profile-hero,
.activity-life-author-profile .alt-author-hero,
.activity-life-author-profile .alt-profile-hero {
    margin-bottom: 0 !important;
}

.alt-author-profile .alt-author-header,
.alt-author-profile .alt-profile-header,
.alt-profile-page .alt-author-header,
.alt-profile-page .alt-profile-header,
.alt-author-page .alt-author-header,
.alt-author-page .alt-profile-header,
.activity-life-author-profile .alt-author-header,
.activity-life-author-profile .alt-profile-header {
    padding-bottom: 18px !important;
}

/* Compact meta/stat row: Standort, Member since, Reviews, Verified. */
.alt-author-profile .alt-author-meta,
.alt-author-profile .alt-profile-meta,
.alt-author-profile .alt-author-stats,
.alt-author-profile .alt-profile-stats,
.alt-profile-page .alt-author-meta,
.alt-profile-page .alt-profile-meta,
.alt-profile-page .alt-author-stats,
.alt-profile-page .alt-profile-stats,
.alt-author-page .alt-author-meta,
.alt-author-page .alt-profile-meta,
.alt-author-page .alt-author-stats,
.alt-author-page .alt-profile-stats,
.activity-life-author-profile .alt-author-meta,
.activity-life-author-profile .alt-profile-meta,
.activity-life-author-profile .alt-author-stats,
.activity-life-author-profile .alt-profile-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px 10px !important;
    margin-top: 10px !important;
    margin-bottom: 12px !important;
}

/* Compact meta chips. */
.alt-author-profile .alt-author-meta-item,
.alt-author-profile .alt-profile-meta-item,
.alt-author-profile .alt-author-stat,
.alt-author-profile .alt-profile-stat,
.alt-profile-page .alt-author-meta-item,
.alt-profile-page .alt-profile-meta-item,
.alt-profile-page .alt-author-stat,
.alt-profile-page .alt-profile-stat,
.alt-author-page .alt-author-meta-item,
.alt-author-page .alt-profile-meta-item,
.alt-author-page .alt-author-stat,
.alt-author-page .alt-profile-stat,
.activity-life-author-profile .alt-author-meta-item,
.activity-life-author-profile .alt-profile-meta-item,
.activity-life-author-profile .alt-author-stat,
.activity-life-author-profile .alt-profile-stat {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 32px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: var(--alt-author-compact-muted-bg) !important;
    color: var(--alt-author-compact-text) !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
}

/* Main content starts higher and keeps columns aligned. */
.alt-author-profile .alt-author-content-grid,
.alt-author-profile .alt-profile-content-grid,
.alt-profile-page .alt-author-content-grid,
.alt-profile-page .alt-profile-content-grid,
.alt-author-page .alt-author-content-grid,
.alt-author-page .alt-profile-content-grid,
.activity-life-author-profile .alt-author-content-grid,
.activity-life-author-profile .alt-profile-content-grid {
    gap: var(--alt-author-compact-gap) !important;
    align-items: start !important;
}

/* Sidebar card compression. */
.alt-author-profile .alt-author-sidebar .alt-card,
.alt-author-profile .alt-profile-sidebar .alt-card,
.alt-profile-page .alt-author-sidebar .alt-card,
.alt-profile-page .alt-profile-sidebar .alt-card,
.alt-author-page .alt-author-sidebar .alt-card,
.alt-author-page .alt-profile-sidebar .alt-card,
.activity-life-author-profile .alt-author-sidebar .alt-card,
.activity-life-author-profile .alt-profile-sidebar .alt-card {
    padding: 18px !important;
    border-radius: var(--alt-author-compact-card-radius) !important;
}

.alt-author-profile .alt-author-sidebar .alt-card + .alt-card,
.alt-author-profile .alt-profile-sidebar .alt-card + .alt-card,
.alt-profile-page .alt-author-sidebar .alt-card + .alt-card,
.alt-profile-page .alt-profile-sidebar .alt-card + .alt-card,
.alt-author-page .alt-author-sidebar .alt-card + .alt-card,
.alt-author-page .alt-profile-sidebar .alt-card + .alt-card,
.activity-life-author-profile .alt-author-sidebar .alt-card + .alt-card,
.activity-life-author-profile .alt-profile-sidebar .alt-card + .alt-card {
    margin-top: 14px !important;
}

/* Trust/Profile checklist compression. */
.alt-author-profile .alt-trust-list,
.alt-author-profile .alt-profile-checklist,
.alt-author-profile .alt-author-checklist,
.alt-profile-page .alt-trust-list,
.alt-profile-page .alt-profile-checklist,
.alt-profile-page .alt-author-checklist,
.alt-author-page .alt-trust-list,
.alt-author-page .alt-profile-checklist,
.alt-author-page .alt-author-checklist,
.activity-life-author-profile .alt-trust-list,
.activity-life-author-profile .alt-profile-checklist,
.activity-life-author-profile .alt-author-checklist {
    display: grid !important;
    gap: 9px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.alt-author-profile .alt-trust-list li,
.alt-author-profile .alt-profile-checklist li,
.alt-author-profile .alt-author-checklist li,
.alt-profile-page .alt-trust-list li,
.alt-profile-page .alt-profile-checklist li,
.alt-profile-page .alt-author-checklist li,
.alt-author-page .alt-trust-list li,
.alt-author-page .alt-profile-checklist li,
.alt-author-page .alt-author-checklist li,
.activity-life-author-profile .alt-trust-list li,
.activity-life-author-profile .alt-profile-checklist li,
.activity-life-author-profile .alt-author-checklist li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 28px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
}

/*
 * Hide optional duplicate summary blocks if present.
 * This intentionally targets only custom Activity-Life classes,
 * not generic Traveler/Bootstrap classes.
 */
.alt-author-profile .alt-sidebar-profile-summary,
.alt-author-profile .alt-trust-profile-summary,
.alt-author-profile .alt-sidebar-duplicate-meta,
.alt-profile-page .alt-sidebar-profile-summary,
.alt-profile-page .alt-trust-profile-summary,
.alt-profile-page .alt-sidebar-duplicate-meta,
.alt-author-page .alt-sidebar-profile-summary,
.alt-author-page .alt-trust-profile-summary,
.alt-author-page .alt-sidebar-duplicate-meta,
.activity-life-author-profile .alt-sidebar-profile-summary,
.activity-life-author-profile .alt-trust-profile-summary,
.activity-life-author-profile .alt-sidebar-duplicate-meta {
    display: none !important;
}

/* Reduce oversized headings inside compact sidebar cards. */
.alt-author-profile .alt-author-sidebar .alt-card h2,
.alt-author-profile .alt-author-sidebar .alt-card h3,
.alt-author-profile .alt-profile-sidebar .alt-card h2,
.alt-author-profile .alt-profile-sidebar .alt-card h3,
.alt-profile-page .alt-author-sidebar .alt-card h2,
.alt-profile-page .alt-author-sidebar .alt-card h3,
.alt-profile-page .alt-profile-sidebar .alt-card h2,
.alt-profile-page .alt-profile-sidebar .alt-card h3,
.alt-author-page .alt-author-sidebar .alt-card h2,
.alt-author-page .alt-author-sidebar .alt-card h3,
.alt-author-page .alt-profile-sidebar .alt-card h2,
.alt-author-page .alt-profile-sidebar .alt-card h3,
.activity-life-author-profile .alt-author-sidebar .alt-card h2,
.activity-life-author-profile .alt-author-sidebar .alt-card h3,
.activity-life-author-profile .alt-profile-sidebar .alt-card h2,
.activity-life-author-profile .alt-profile-sidebar .alt-card h3 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
}

/* Tablet refinement. */
@media (max-width: 991px) {
    .alt-author-profile,
    .alt-profile-page,
    .alt-author-page,
    .activity-life-author-profile {
        --alt-author-compact-gap: 18px;
    }

    .alt-author-profile .alt-author-meta,
    .alt-author-profile .alt-profile-meta,
    .alt-author-profile .alt-author-stats,
    .alt-author-profile .alt-profile-stats,
    .alt-profile-page .alt-author-meta,
    .alt-profile-page .alt-profile-meta,
    .alt-profile-page .alt-author-stats,
    .alt-profile-page .alt-profile-stats,
    .alt-author-page .alt-author-meta,
    .alt-author-page .alt-profile-meta,
    .alt-author-page .alt-author-stats,
    .alt-author-page .alt-profile-stats,
    .activity-life-author-profile .alt-author-meta,
    .activity-life-author-profile .alt-profile-meta,
    .activity-life-author-profile .alt-author-stats,
    .activity-life-author-profile .alt-profile-stats {
        gap: 7px !important;
        margin-top: 8px !important;
        margin-bottom: 10px !important;
    }

    .alt-author-profile .alt-author-meta-item,
    .alt-author-profile .alt-profile-meta-item,
    .alt-author-profile .alt-author-stat,
    .alt-author-profile .alt-profile-stat,
    .alt-profile-page .alt-author-meta-item,
    .alt-profile-page .alt-profile-meta-item,
    .alt-profile-page .alt-author-stat,
    .alt-profile-page .alt-profile-stat,
    .alt-author-page .alt-author-meta-item,
    .alt-author-page .alt-profile-meta-item,
    .alt-author-page .alt-author-stat,
    .alt-author-page .alt-profile-stat,
    .activity-life-author-profile .alt-author-meta-item,
    .activity-life-author-profile .alt-profile-meta-item,
    .activity-life-author-profile .alt-author-stat,
    .activity-life-author-profile .alt-profile-stat {
        min-height: 30px !important;
        padding: 5px 9px !important;
        font-size: 12.5px !important;
    }

    .alt-author-profile .alt-author-sidebar .alt-card,
    .alt-author-profile .alt-profile-sidebar .alt-card,
    .alt-profile-page .alt-author-sidebar .alt-card,
    .alt-profile-page .alt-profile-sidebar .alt-card,
    .alt-author-page .alt-author-sidebar .alt-card,
    .alt-author-page .alt-profile-sidebar .alt-card,
    .activity-life-author-profile .alt-author-sidebar .alt-card,
    .activity-life-author-profile .alt-profile-sidebar .alt-card {
        padding: 16px !important;
    }
}

/* Mobile: keep readable and allow wrapping. */
@media (max-width: 767px) {
    .alt-author-profile .alt-author-meta,
    .alt-author-profile .alt-profile-meta,
    .alt-author-profile .alt-author-stats,
    .alt-author-profile .alt-profile-stats,
    .alt-profile-page .alt-author-meta,
    .alt-profile-page .alt-profile-meta,
    .alt-profile-page .alt-author-stats,
    .alt-profile-page .alt-profile-stats,
    .alt-author-page .alt-author-meta,
    .alt-author-page .alt-profile-meta,
    .alt-author-page .alt-author-stats,
    .alt-author-page .alt-profile-stats,
    .activity-life-author-profile .alt-author-meta,
    .activity-life-author-profile .alt-profile-meta,
    .activity-life-author-profile .alt-author-stats,
    .activity-life-author-profile .alt-profile-stats {
        justify-content: flex-start !important;
    }

    .alt-author-profile .alt-author-meta-item,
    .alt-author-profile .alt-profile-meta-item,
    .alt-author-profile .alt-author-stat,
    .alt-author-profile .alt-profile-stat,
    .alt-profile-page .alt-author-meta-item,
    .alt-profile-page .alt-profile-meta-item,
    .alt-profile-page .alt-author-stat,
    .alt-profile-page .alt-profile-stat,
    .alt-author-page .alt-author-meta-item,
    .alt-author-page .alt-profile-meta-item,
    .alt-author-page .alt-author-stat,
    .alt-author-page .alt-profile-stat,
    .activity-life-author-profile .alt-author-meta-item,
    .activity-life-author-profile .alt-profile-meta-item,
    .activity-life-author-profile .alt-author-stat,
    .activity-life-author-profile .alt-profile-stat {
        white-space: normal !important;
    }
}

/* ALT AUTHOR PROFILE COMPACT LAYOUT END */

/* ALT AUTHOR COMPACT HERO SPACING BEGIN */
@media (min-width: 992px) {
    .alt-author-profile .alt-author-profile__hero {
        min-height: 300px;
        padding-top: 62px;
        padding-bottom: 92px;
    }

    .alt-author-profile .alt-author-profile__shell {
        margin-top: -108px;
    }

    .alt-author-profile .alt-author-profile__masthead {
        gap: 22px;
    }

    .alt-author-profile .alt-author-profile__avatar-wrap {
        margin-top: -24px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .alt-author-profile .alt-author-profile__masthead-main {
        gap: 18px;
    }

    .alt-author-profile .alt-author-profile__lead {
        margin-top: 16px;
    }

    .alt-author-profile .alt-author-profile__stats-grid {
        gap: 14px;
    }

    .alt-author-profile .alt-author-profile__content-grid {
        margin-top: 24px;
        gap: 26px;
    }
}

@media (max-width: 991px) {
    .alt-author-profile .alt-author-profile__hero {
        min-height: 260px;
        padding-top: 44px;
        padding-bottom: 78px;
    }

    .alt-author-profile .alt-author-profile__shell {
        margin-top: -86px;
    }

    .alt-author-profile .alt-author-profile__masthead-main {
        gap: 18px;
    }

    .alt-author-profile .alt-author-profile__stats-grid {
        gap: 14px;
    }

    .alt-author-profile .alt-author-profile__content-grid {
        margin-top: 24px;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .alt-author-profile .alt-author-profile__hero {
        min-height: 240px;
        padding-top: 40px;
        padding-bottom: 68px;
    }

    .alt-author-profile .alt-author-profile__shell {
        margin-top: -58px;
    }

    .alt-author-profile .alt-author-profile__masthead {
        gap: 18px;
    }

    .alt-author-profile .alt-author-profile__masthead-main {
        gap: 16px;
    }

    .alt-author-profile .alt-author-profile__content-grid {
        margin-top: 20px;
        gap: 20px;
    }
}
/* ALT AUTHOR COMPACT HERO SPACING END */

/* ALT AUTHOR MASTHEAD ROW LAYOUT BEGIN */
@media (min-width: 1200px) {
    .alt-author-profile {
        --alt-author-sidebar-width: 336px;
        --alt-author-grid-gap: 26px;
        --alt-author-stats-width: 336px;
    }

    .alt-author-profile .alt-author-profile__masthead,
    .alt-author-profile .alt-author-profile__content-grid {
        grid-template-columns: var(--alt-author-sidebar-width) minmax(0, 1fr);
        column-gap: var(--alt-author-grid-gap);
    }

    .alt-author-profile .alt-author-profile__avatar-wrap,
    .alt-author-profile .alt-author-profile__sidebar {
        width: 100%;
        max-width: var(--alt-author-sidebar-width);
    }

    .alt-author-profile .alt-author-profile__masthead {
        align-items: stretch;
        margin-bottom: 4px;
    }

    .alt-author-profile .alt-author-profile__masthead-main {
        grid-template-columns: minmax(0, 1fr) var(--alt-author-stats-width);
        gap: 16px;
        align-items: stretch;
    }

    .alt-author-profile .alt-author-profile__identity-card,
    .alt-author-profile .alt-author-profile__stats-grid {
        height: 100%;
    }

    .alt-author-profile .alt-author-profile__identity-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100%;
    }

    .alt-author-profile .alt-author-inline-bio {
        max-width: 60ch;
    }

    .alt-author-profile .alt-author-profile__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 0;
        align-content: stretch;
    }

    .alt-author-profile .alt-author-profile__stat-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
        padding: 16px 18px;
    }

    .alt-author-profile .alt-author-profile__stat-card strong {
        font-size: 17px;
    }

    .alt-author-profile .alt-author-profile__content-grid {
        margin-top: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .alt-author-profile .alt-author-profile__masthead {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 22px;
    }

    .alt-author-profile .alt-author-profile__masthead-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .alt-author-profile .alt-author-profile__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 0;
    }

    .alt-author-profile .alt-author-profile__stat-card {
        padding: 18px;
    }

    .alt-author-profile .alt-author-profile__content-grid {
        margin-top: 18px;
    }
}

@media (max-width: 991px) {
    .alt-author-profile .alt-author-profile__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .alt-author-profile .alt-author-profile__stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ALT AUTHOR MASTHEAD ROW LAYOUT END */

/* ALT AUTHOR MASTHEAD EQUAL HEIGHT BEGIN */
@media (min-width: 1200px) {
    .alt-author-profile {
        --alt-author-masthead-height: 212px;
    }

    .alt-author-profile .alt-author-profile__masthead {
        align-items: stretch;
    }

    .alt-author-profile .alt-author-profile__avatar-wrap,
    .alt-author-profile .alt-author-profile__masthead-main,
    .alt-author-profile .alt-author-profile__identity-card,
    .alt-author-profile .alt-author-profile__stats-grid {
        min-height: var(--alt-author-masthead-height);
    }

    .alt-author-profile .alt-author-profile__avatar-wrap {
        align-self: stretch;
        justify-content: center;
        align-items: stretch;
        padding: 18px;
        overflow: hidden;
    }

    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar {
        display: flex;
        align-self: center;
        width: 100%;
        max-width: 180px;
        height: auto;
        min-height: auto;
        aspect-ratio: 1 / 1;
        padding: 8px;
    }

    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar > img.avatar,
    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar > img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 18px !important;
    }

    .alt-author-profile .alt-author-profile__masthead-main {
        min-height: var(--alt-author-masthead-height);
    }

    .alt-author-profile .alt-author-profile__identity-card {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .alt-author-profile .alt-author-profile__stats-grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
        height: 100%;
    }

    .alt-author-profile .alt-author-profile__stat-card {
        height: 100%;
        min-height: 0;
        padding: 14px 16px;
    }

    .alt-author-profile .alt-author-profile__stat-label {
        margin-bottom: 8px;
    }
}
/* ALT AUTHOR MASTHEAD EQUAL HEIGHT END */

/* ALT AUTHOR SERVICE CARD AVATAR ROUND OVERLAY BEGIN */
.alt-author-profile .alt-author-profile__services-wrap .services-item a.service-avatar,
.alt-author-profile .alt-author-profile__services-wrap .item-service a.service-avatar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    max-width: 46px;
    max-height: 46px;
    position: absolute;
    right: 20px;
    bottom: -22px;
    z-index: 5;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    box-shadow: 0 8px 20px rgba(16, 35, 29, 0.18);
}

.alt-author-profile .alt-author-profile__services-wrap .services-item a.service-avatar > img,
.alt-author-profile .alt-author-profile__services-wrap .item-service a.service-avatar > img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    border-radius: 50% !important;
}
/* ALT AUTHOR SERVICE CARD AVATAR ROUND OVERLAY END */

/* ALT AUTHOR TOP MASTHEAD FINAL ALIGN BEGIN */
.alt-author-profile .alt-author-profile__identity-cta-row {
    margin-top: 18px;
}

.alt-author-profile .alt-author-profile__cta--identity {
    min-height: 44px;
}

@media (min-width: 1200px) {
    .alt-author-profile {
        --alt-author-masthead-height: 212px;
        --alt-author-avatar-inner-size: 170px;
    }

    .alt-author-profile .alt-author-profile__hero {
        padding-bottom: 104px;
    }

    .alt-author-profile .alt-author-profile__hero-copy {
        max-width: 600px;
    }

    .alt-author-profile .alt-author-profile__cta-row {
        display: none;
    }

    .alt-author-profile .alt-author-profile__shell {
        margin-top: -86px;
    }

    .alt-author-profile .alt-author-profile__masthead {
        align-items: stretch;
    }

    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: var(--alt-author-masthead-height);
        height: var(--alt-author-masthead-height);
        margin-top: 0;
        padding: 18px;
        overflow: visible;
    }

    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar {
        width: min(100%, var(--alt-author-avatar-inner-size));
        max-width: var(--alt-author-avatar-inner-size);
        height: var(--alt-author-avatar-inner-size);
        aspect-ratio: 1 / 1;
        padding: 8px;
    }

    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar > img.avatar,
    .alt-author-profile .alt-author-profile__masthead > .alt-author-profile__avatar-wrap > .alt-author-profile__avatar > img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        object-fit: cover;
        border-radius: 18px !important;
    }

    .alt-author-profile .alt-author-profile__masthead-main,
    .alt-author-profile .alt-author-profile__identity-card,
    .alt-author-profile .alt-author-profile__stats-grid {
        min-height: var(--alt-author-masthead-height);
        height: var(--alt-author-masthead-height);
    }

    .alt-author-profile .alt-author-profile__identity-card {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .alt-author-profile .alt-author-inline-bio {
        max-width: 58ch;
    }

    .alt-author-profile .alt-author-profile__stats-grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
}
/* ALT AUTHOR TOP MASTHEAD FINAL ALIGN END */
