.dv-author-card {
    margin-top: 48px;
    margin-bottom: 24px;
}
.dv-author-card-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid #676767;
    border-radius: 6px;
}
.dv-author-card-image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.dv-author-card-name {
    margin: 0 0 8px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
}
.dv-author-card-bio {
    margin: 0 0 12px;
    font-size: 1.5rem;
    line-height: 1.5;
}
.dv-author-card-bio a {
    color: #52797b;
}
.dv-author-card-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 1.4rem;
}
.dv-author-card-links a {
    color: #52797b;
}
@media (max-width: 600px) {
    .dv-author-card-inner {
        flex-direction: column;
    }
}





/* === Vinestead timeline === */
.dv-timeline {
    display: flex;
    flex-direction: column;
    margin: 48px 0;
    position: relative;
}
.dv-timeline::before {
    content: "";
    position: absolute;
    width: 2px;
    left: 163px;
    top: 75px;
    bottom: 75px;
    background: currentColor;
    opacity: 0.25;
}
.gh-content > .dv-timeline {
    grid-column: wide-start / main-end;
}
.dv-timeline a.dv-tl-entry {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-bottom: 56px;
    color: inherit;
    text-decoration: none;
    box-shadow: none;
}
.dv-timeline a.dv-tl-entry:hover {
    opacity: 1;
}
.dv-tl-entry:last-child {
    padding-bottom: 0;
}
.dv-tl-year {
    flex: 0 0 130px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    opacity: 0.9;
}
.dv-tl-spine {
    position: relative;
    flex: 0 0 12px;
    align-self: stretch;
}


.dv-tl-spine::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
    transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.dv-tl-entry:hover .dv-tl-spine::after {
    background: #52797b;
    opacity: 1;
    box-shadow: 0 0 8px rgba(82, 121, 123, 0.5);
}
.dv-tl-cover {
    flex: 0 0 100px;
}
.dv-tl-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #454545;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
    filter: grayscale(20%) brightness(0.95);
    transition: filter 0.25s ease;
}
.dv-tl-entry:hover .dv-tl-cover img {
    filter: grayscale(0%) brightness(1);
}
.dv-tl-body {
    flex: 1 1 0;
    min-width: 0;
}
.dv-tl-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.dv-tl-entry:hover .dv-tl-title {
    color: #52797b;
}
.dv-tl-format {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #52797b;
    opacity: 0.8;
    vertical-align: 2px;
}
.dv-tl-hook {
    margin-top: 6px;
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.65;
}
@media (max-width: 640px) {
    .dv-timeline::before {
    left: 85px;
    top: 48px;
    bottom: 48px;
}
    .dv-timeline a.dv-tl-entry {
        gap: 14px;
        padding-bottom: 36px;
    }
    .dv-tl-spine::before {
        bottom: -36px;
    }
    .dv-tl-year {
        flex: 0 0 66px;
        font-size: 2.4rem;
    }
    .dv-tl-spine::after {
        width: 7px;
        height: 7px;
    }
    .dv-tl-cover {
        flex: 0 0 64px;
    }
    .dv-tl-title {
        font-size: 1.6rem;
    }
    .dv-tl-format {
        display: block;
        margin: 4px 0 0;
        vertical-align: baseline;
    }
    .dv-tl-hook {
        font-size: 1.3rem;
    }
}