.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 96px;
}
.section-heading {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-h2);
    font-feature-settings: var(--font-feature);
    font-variation-settings: "wdth" 125;
    color: var(--color-fg);
}
.section-heading--white {
    color: #ffffff;
}
.page-hero {
    background: #141414;
}
.page-hero__dark {
    padding-top: 73px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}
.page-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 80px 96px 64px;
    text-align: center;
}
@media (max-width: 1023px) {
    .page-hero__content {
        padding: 60px 48px 48px;
    }
}
@media (max-width: 767px) {
    .page-hero__content {
        padding: 48px 20px 40px;
    }
}
.page-hero__content--blog {
    padding: 128px 96px 64px;
}
@media (max-width: 1023px) {
    .page-hero__content--blog {
        padding: 80px 48px 48px;
    }
}
@media (max-width: 767px) {
    .page-hero__content--blog {
        padding: 48px 20px 40px;
    }
}
.page-hero__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 16px;
    line-height: 21px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.page-hero__breadcrumbs li {
    display: flex;
    align-items: center;
}
.page-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    white-space: nowrap;
}
.page-hero__breadcrumbs a:hover {
    color: #ffffff;
}
.page-hero__breadcrumbs svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.page-hero__breadcrumbs-current {
    color: #ffffff;
    white-space: nowrap;
}
.page-hero__title {
    font-size: 60px;
    font-weight: var(--font-weight-extrabold);
    line-height: 60px;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1023px) {
    .page-hero__title {
        font-size: 48px;
        line-height: 48px;
    }
}
@media (max-width: 767px) {
    .page-hero__title {
        font-size: 36px;
        line-height: 40px;
    }
}
.page-hero__sub {
    font-size: 21px;
    font-weight: var(--font-weight-normal);
    line-height: 28px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 576px;
}
@media (max-width: 767px) {
    .page-hero__sub {
        font-size: 18px;
    }
}
.page-hero__shelf {
    height: 60px;
    background: #ffffff;
    border-radius: 48px 48px 0 0;
}
@media (max-width: 767px) {
    .page-hero__shelf {
        height: 28px;
        border-radius: 20px 20px 0 0;
    }
}
.blog-hero__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
@media (max-width: 767px) {
    .blog-hero__filters {
        gap: 8px;
    }
}
.blog-hero__filter {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base);
}
.blog-hero__filter--active {
    background: linear-gradient(135deg, #a65eed 0%, #c23cdd 100%);
    color: #ffffff;
}
.blog-cards {
    background: #ffffff;
    padding: 64px 96px;
}
@media (max-width: 1199px) {
    .blog-cards {
        padding: 48px 48px;
    }
}
@media (max-width: 767px) {
    .blog-cards {
        padding: 40px 20px;
    }
}
.blog-cards__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .blog-cards__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1024px) {
    .blog-cards__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.blog-card-wrap {
    flex: 1 1 0;
    min-width: 0;
}
@media (max-width: 1023px) {
    .blog-card-wrap {
        flex: 1 1 calc(50% - 12px);
    }
}
@media (max-width: 767px) {
    .blog-card-wrap {
        flex: none;
        width: 100%;
    }
}
.blog-card {
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow var(--transition-base), transform var(--transition-fast);
    text-decoration: none;
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.blog-card:hover .blog-card__read-more {
    color: var(--color-primary);
}
.blog-card__image {
    width: 100%;
    aspect-ratio: 398/299;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px 12px;
    flex-wrap: wrap;
}
.blog-card__category {
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    line-height: 15px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #a65eed;
}
.blog-card__date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 21px;
    color: #737373;
}
.blog-card__date svg {
    flex-shrink: 0;
}
.blog-card__title {
    font-size: 24px;
    font-weight: var(--font-weight-extrabold);
    line-height: 28px;
    color: #141414;
    margin: 0;
}
.blog-card__desc {
    font-size: 16px;
    line-height: 21px;
    color: #737373;
    flex: 1;
    margin: 0;
}
.blog-card__read-more {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: 21px;
    color: #141414;
    padding: 4px 0;
    margin-top: 4px;
    width: fit-content;
}
.page-hero--author {
    background: #141414;
}
.page-hero--author .page-hero__dark {
    min-height: auto;
}
.page-hero--author .page-hero__shelf {
    margin-top: 64px;
}
@media (max-width: 767px) {
    .page-hero--author .page-hero__shelf {
        margin-top: 48px;
    }
}
.page-hero__content--author {
    align-items: flex-start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 256px 0;
    text-align: left;
}
@media (max-width: 1199px) {
    .page-hero__content--author {
        padding: 64px 96px 0;
    }
}
@media (max-width: 1023px) {
    .page-hero__content--author {
        padding: 48px 48px 0;
    }
}
@media (max-width: 767px) {
    .page-hero__content--author {
        padding: 32px 20px 0;
    }
}
.author-hero__main {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}
@media (max-width: 1023px) {
    .author-hero__main {
        gap: 32px;
    }
}
@media (max-width: 767px) {
    .author-hero__main {
        flex-direction: column;
        gap: 24px;
    }
}
.author-hero__media {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 12px;
    width: 200px;
}
@media (max-width: 767px) {
    .author-hero__media {
        width: 160px;
    }
}
.author-hero__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 16px;
    object-fit: cover;
    object-position: top;
    display: block;
}
.author-hero__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: transparent;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    line-height: 20px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
}
.author-hero__social-link:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}
.author-hero__text {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}
@media (max-width: 767px) {
    .author-hero__text {
        gap: 16px;
    }
}
.author-hero__text .page-hero__breadcrumbs {
    justify-content: flex-start;
}
.author-hero__name {
    margin: 0;
    font-size: 60px;
    font-weight: var(--font-weight-extrabold);
    line-height: 66px;
    color: #ffffff;
}
@media (max-width: 1023px) {
    .author-hero__name {
        font-size: 44px;
        line-height: 50px;
    }
}
@media (max-width: 767px) {
    .author-hero__name {
        font-size: 32px;
        line-height: 38px;
    }
}
.author-hero__bio {
    margin: 0;
    max-width: 720px;
    font-size: 21px;
    font-weight: var(--font-weight-normal);
    line-height: 32px;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
    .author-hero__bio {
        font-size: 17px;
        line-height: 26px;
    }
}
.load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: #ffffff;
}
.load-more {
    background: #141414;
    border: 1px solid #141414;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: 21px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.load-more:hover {
    background: #ffffff;
    color: #141414;
}
.load-more:hover svg path {
    stroke: #141414;
}
.load-more_loading {
    opacity: 0.5;
    cursor: not-allowed;
}
.load-more_loading svg {
    animation: rotate 1s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
