/* Service bulletins page */
.bulletin-card {
    background: #ffffff;
    border: 1px solid rgba(147, 197, 253, 0.28);
    border-radius: 1rem;
    transition: border-color 220ms ease;
}
.bulletin-title {
    line-height: 1.32;
    letter-spacing: -0.01em;
}
.bulletin-meta {
    color: #64748b;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}
.bulletin-summary {
    max-width: 64ch;
    color: #334155;
    line-height: 1.6;
}
.bulletin-download-btn {
    align-items: center;
    gap: 0.5rem;
}
.bulletin-card:hover,
.bulletin-card:focus-within {
    box-shadow: none;
    border-color: rgba(147, 197, 253, 0.45);
}
.bulletins-section {
    min-height: 0;
}
.bulletins-shell {
    padding-top: 2rem;
    padding-bottom: 3rem;
}
@media (min-width: 640px) {
    .bulletins-shell {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }
}
@media (min-width: 1024px) {
    .bulletins-shell {
        padding-top: 3rem;
    }
}
@media (max-width: 900px) {
    .sb-hero-inner p {
        margin-top: 1.25rem !important;
    }
    .bulletins-shell {
        padding-top: 2rem;
    }
    .bulletin-summary {
        max-width: none;
    }
}
@media (max-width: 639px) {
    .bulletin-card > .flex {
        flex-direction: column;
    }
    .bulletin-card > .flex > .flex-1 {
        width: 100%;
    }
    .bulletin-download-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal !important;
    }
}
.pdf-icon-wrap {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(147, 197, 253, 0.18);
    border: 1px solid rgba(147, 197, 253, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdf-icon-wrap svg {
    stroke: #1E4ED8;
}
.meta-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1E4ED8;
    background: rgba(147, 197, 253, 0.14);
    border: 1px solid rgba(147, 197, 253, 0.28);
    border-radius: 0.5rem;
    padding: 3px 10px;
}
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    padding: 0;
}
