.decorilla-author-archive {
    color: #333;
}

.decorilla-author-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px 100px;
}

.decorilla-author-eyebrow,
.decorilla-author-articles-header {
    text-align: center;
}

.decorilla-author-eyebrow {
    margin-bottom: 56px;
    color: #9a8764;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.decorilla-author-eyebrow-line {
    display: block;
    width: 48px;
    height: 1px;
    margin: 0 auto 14px;
    background: #b19f6f;
}

.decorilla-author-hero {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 0 56px;
    padding-bottom: 36px;
    margin-bottom: 72px;
    border-bottom: 1px solid #d4caaf;
}

.decorilla-author-photo-wrap {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.decorilla-author-photo {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: 3px solid #d4caaf;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(44, 44, 44, .1);
}

.decorilla-author-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorilla-author-info {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.decorilla-author-kicker,
.decorilla-author-title {
    color: #9a8764;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.decorilla-author-kicker {
    margin: 0 0 16px;
}

.decorilla-author-name {
    margin: 0 0 24px;
    color: #272319;
    font-family: 'Ethereal thin', 'Ethereal', Georgia, serif;
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 300;
    letter-spacing: .02em;
    line-height: 1.02;
}

.decorilla-author-articles-header {
    margin-bottom: 48px;
}

.decorilla-author-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 28px 0 0;
    background: #d4caaf;
}

.decorilla-author-title {
    margin: 0;
}

.decorilla-author-bio {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 28px;
    color: #707070;
    font-size: 16px;
    line-height: 1.85;
}

.decorilla-author-bio p {
    margin: 0;
}

.decorilla-author-articles-header h2 {
    margin: 0;
    color: #272319;
    font-family: 'Ethereal thin', 'Ethereal', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 300;
    letter-spacing: .02em;
    line-height: 1.2;
}

.decorilla-author-archive .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 28px;
}

.decorilla-author-archive .articles-grid > article {
    min-width: 0;
    height: 100%;
}

.decorilla-author-archive .article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    color: #272319;
    text-decoration: none;
    transition: color .2s ease;
}

.decorilla-author-archive .article-card__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 16px;
    background: #e5dfcf;
    border-radius: 12px;
}

.decorilla-author-archive .article-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.decorilla-author-archive .article-card:hover .article-card__img img,
.decorilla-author-archive .article-card:focus-visible .article-card__img img {
    transform: scale(1.03);
}

.decorilla-author-archive .article-card__title {
    margin: 0 0 4px;
    color: inherit;
    font-family: 'Ethereal thin', 'Ethereal', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
}

.decorilla-author-archive .article-card__date {
    margin: auto 0 0;
    color: #707070;
    font-family: "proxima-nova", "Gill Sans MT", "Gill Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.2;
}

.decorilla-author-archive .article-card:hover,
.decorilla-author-archive .article-card:focus-visible {
    color: #9a8764;
}

.decorilla-author-load-more-wrap {
    margin-top: 56px;
    text-align: center;
}

.decorilla-author-load-more {
    display: inline-block;
    min-width: 280px;
    padding: 14px 40px;
    color: #b19f6f;
    background: transparent;
    border: 1px solid #b19f6f;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}

.decorilla-author-load-more:hover,
.decorilla-author-load-more:focus-visible {
    color: #9a8764;
    border-color: #9a8764;
    background: transparent;
}

.decorilla-author-load-more.is-loading {
    cursor: wait;
    opacity: .65;
}

.decorilla-author-load-more-status {
    margin: 16px 0 0;
    color: #707070;
    font-size: 13px;
}

.decorilla-author-no-articles {
    color: #707070;
    text-align: center;
}

@media (max-width: 860px) {
    .decorilla-author-page {
        padding: 48px 24px 80px;
    }

    .decorilla-author-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        align-items: start;
        gap: 0;
    }

    .decorilla-author-photo-wrap {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        margin-bottom: 28px;
    }

    .decorilla-author-info {
        grid-column: 1;
        grid-row: 2;
        text-align: center;
    }

    .decorilla-author-name {
        margin-left: auto;
        margin-right: auto;
    }

    .decorilla-author-divider {
        margin-top: 24px;
    }

    .decorilla-author-bio {
        grid-column: 1;
        grid-row: 3;
        margin-top: 24px;
        text-align: left;
    }

    .decorilla-author-archive .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
    }
}

@media (max-width: 540px) {
    .decorilla-author-page {
        padding-right: 20px;
        padding-left: 20px;
    }

    .decorilla-author-archive .articles-grid {
        grid-template-columns: 1fr;
    }

    .decorilla-author-photo {
        width: 150px;
        height: 150px;
    }
}
