/* Blog index as a dated ledger. Article chrome lives in article.css. */

.bg-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 0 72px;
}
.bg-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 180px;
    gap: 20px 28px;
    align-items: center;
    padding: 22px 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(47, 56, 72, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.bg-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(47, 56, 72, 0.1);
}
.bg-row-shot {
    display: block;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    background: #12202a;
}
.bg-row-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-row time {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.bg-tag {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-deep);
}
.bg-row h2 {
    margin: 0 0 8px;
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--ink-strong);
}
.bg-row p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 40em;
}
.bg-row:hover h2 { color: var(--teal-ink); }

@media (max-width: 720px) {
    .bg-row { grid-template-columns: 1fr; gap: 10px; }
    .bg-row time { margin-top: 0; }
    .bg-row-shot { height: 160px; }
    .bg-row:hover { transform: none; }
}
