/* Prevent horizontal scroll site-wide */
html { overflow-x: hidden !important; }

/* Button links — remove browser default underline */
.button { text-decoration: none !important; }

/* ── Blog article multi-column layout ─────────────────────────────── */
.article-columns {
    column-gap: 0.75rem;
}
@media (min-width: 768px) {
    .article-columns { columns: 2; }
}
@media (min-width: 1024px) {
    .article-columns { columns: 3; }
}
.article-section {
    break-inside: avoid;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    background: #fff;
    padding: 0.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

/* ── Award gallery card hover effects ─────────────────────────────── */
.fg-award-card:hover .fg-award-img     { transform: scale(1.06) !important; }
.fg-award-card:hover .fg-award-overlay { opacity: 1 !important; }

/* ── Carousel shimmer loading animation ───────────────────────────── */
@keyframes pb-shimmer {
    0%, 100% { background-color: rgba(255,255,255,0.04); }
    50%       { background-color: rgba(255,255,255,0.18); }
}
.pb-carousel-shimmer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: pb-shimmer 1.2s ease-in-out infinite;
    pointer-events: none;
}

/* ── Diaspora project features card grid ──────────────────────────── */
.diaspora-features ol,
.diaspora-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .diaspora-features ol,
    .diaspora-features ul { grid-template-columns: 1fr 1fr; }
}
.diaspora-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}
.diaspora-features li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: #d72028;
}

/* ── Marquee / sliding strip ──────────────────────────────────────── */
.pb-marq {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: pb-marq 28s linear infinite;
}
.pb-marq:hover { animation-play-state: paused; }
@keyframes pb-marq {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
