.entry-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.entry-card time,
.entry-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.entry-card h3 { margin-bottom: 0.15rem; }
.entry-card h3 a { color: var(--text); text-decoration: none; }
.entry-card h3 a:hover { color: var(--brand-primary); }

.pinned-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    background: var(--color-teal-900);
    color: var(--color-white);
    padding: 0.15em 0.55em;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.post-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--bg-alt);
}

.prose {
    max-width: 72ch;
}
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); margin: 1.2em 0; }
.prose a { text-decoration-line: underline; }

.event-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: start;
}
.event-date {
    background: var(--brand-primary);
    color: var(--text-inverse);
    border-radius: var(--radius);
    text-align: center;
    padding: 0.5em 0.25em;
    line-height: 1.1;
}
.event-date .day { font-size: 1.4rem; font-weight: 800; display: block; }
.event-date .mon { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }

.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}
.doc-item:last-child { border-bottom: none; }
.doc-meta { color: var(--text-muted); font-size: 0.85rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.85rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item.is-video::after {
    content: "▶";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: rgba(7, 59, 56, 0.35);
}
.gallery-caption {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.sponsor-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}
.sponsor-strip img { max-height: 64px; width: auto; }
.sponsor-card {
    text-align: center;
}
.sponsor-card img {
    max-height: 90px;
    margin: 0 auto 0.75rem;
}

.tier-badge { text-transform: capitalize; }

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.pagination a, .pagination span {
    padding: 0.4em 0.85em;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
}
.pagination a:hover { background: var(--bg-alt); }
.pagination .is-current { background: var(--brand-primary); color: var(--text-inverse); border-color: var(--brand-primary); }

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-muted); }

.about-logo {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 1.5rem 0 2rem;
}

.qr-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    padding: 0.85rem 1rem;
    margin-top: 0.75rem;
}
.qr-card svg {
    flex-shrink: 0;
    background: #fff;
    border-radius: calc(var(--radius) / 2);
    overflow: hidden;
}
.qr-card p {
    margin: 0;
    font-size: 0.8rem;
}

.about-team-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 21 / 9;
    margin: 0 0 2rem;
    background: var(--bg-alt);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    text-align: center;
    padding: 1rem;
}

.school-affiliation {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 72ch;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}
.school-affiliation img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}
