/* ============================================
   SINGLE PEOPLE
   ============================================ */

.author-hero {
    padding: 0 0 8rem;
}

.author-hero-inner {
    max-width: var(--max-w-wrapper);
    margin: 0 auto;
    padding: 0 2.4rem;
}

@media (min-width: 1024px) {
    .author-hero-inner {
        padding: 0 8rem;
    }
}

.author-tile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background-color: var(--color-gray-light);
}

@media (min-width: 1024px) {
    .author-tile {
        grid-template-columns: 280px 1fr;
        align-items: stretch;
        max-width: calc((var(--max-w-wrapper) - 8rem * 2) * 11 / 12);
    }
}

.author-tile-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    width: 300px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .author-tile-image {
        width: 100%;
        margin: 0;
    }
}

.author-tile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 40px solid var(--color-white);
    border-right: 40px solid transparent;
    transform: rotate(90deg);
    z-index: 10;
}

@media (min-width: 1024px) {
    .author-tile-image::before {
        border-bottom-width: 64px;
        border-right-width: 64px;
    }
}

.author-tile-image img {
    width: 100%;
    height: auto;
    object-position: top;
    display: block;
}

.author-tile-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    background-color: var(--color-gray-light);
    padding: 3.2rem 2.4rem;
    height: 100%;
}

@media (min-width: 1024px) {
    .author-tile-content {
        padding: 4rem 6.4rem;
    }
}

.author-tile-name {
    font-size: var(--font-h1-size);
    line-height: var(--font-h1-line);
    letter-spacing: var(--font-h1-letter);
    font-weight: var(--font-h1-weight);
    margin: 0;
}

.author-tile-title {
    font-size: var(--font-p0-size);
    line-height: var(--font-p0-line);
    letter-spacing: var(--font-p0-letter);
    font-weight: var(--font-p0-weight);
    margin: 0;
}

.author-tile-bio {
    font-size: var(--font-p1-size);
    line-height: var(--font-p1-line);
}

.author-tile-bio p {
    margin-bottom: 1em;
}

.author-tile-bio p:last-child {
    margin-bottom: 0;
}

.author-tile-bio p:empty,
.author-tile-bio p:has(> br:only-child) {
    display: none;
}

/* ============================================
   AUTHORS ARCHIVE
   ============================================ */

.authors-hero {
    max-width: var(--max-w-wrapper);
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-bottom: 1.6rem;
}

@media (min-width: 1024px) {
    .authors-hero {
        padding-left: 8rem;
        padding-right: 8rem;
    }
}

.authors-title {
    font-size: var(--font-h2-size);
    font-weight: var(--font-h2-weight);
    line-height: var(--font-h2-line);
    letter-spacing: var(--font-h2-letter);
}

.authors-list-section {
    max-width: var(--max-w-wrapper);
    margin: 0 auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-bottom: 8rem;
}

@media (min-width: 1024px) {
    .authors-list-section {
        padding-left: 8rem;
        padding-right: 8rem;
    }
}

.authors-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 1024px) {
    .authors-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.authors-card {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 0;
    border: 1px solid var(--color-border, #a0a0a0);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .authors-card {
        grid-template-columns: repeat(17, minmax(0, 1fr));
        column-gap: 2.4rem;
    }
}

.authors-card-image {
    width: 100%;
    overflow: hidden;
    height: 200px;
}

@media (min-width: 1024px) {
    .authors-card-image {
        grid-column: span 5;
    }
}

.authors-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.authors-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
	padding: 2.4rem;
}

@media (min-width: 1024px) {
    .authors-card-content {
        grid-column: span 12;
		padding: 2.4rem 0;
    }
}

.authors-card-name {
    font-size: var(--font-p0-size);
    font-weight: 700;
    line-height: var(--font-p0-line);
    margin: 0;
}

.authors-card-title {
    font-size: var(--font-p1-size);
    line-height: var(--font-p1-line);
    color: var(--color-black);
    margin: 0;
}

.authors-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
    width: fit-content;
    font-size: var(--font-link1-size);
}

.authors-card-link svg {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.bm-link{
	margin-top: 25px;
}