
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f3f4f6; 
    color: #222;
}

/* Page container */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bottom-bar {
    height: 8px;
    background-color: #b91c1c; 
    width: 100%;
}

.top-bar {
    height: 8px;
    background-color: #b91c1c; 
}

/* Header with centered logo and union name */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.site-header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    height: 120px;  
    width: auto;
    margin-bottom: 12px;
}

.site-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-name {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.site-tagline {
    font-size: 14px;
    color: #555;
}


.content-wrapper {
    flex: 1;
    padding: 24px 16px 40px;
}

.article-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 32px 28px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}


.article-header {
    text-align: left;
}

.article-body li {
    font-weight: 700;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 700;
    color: #b91c1c; /* red */
    margin: 0 0 8px;
}

.headline {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.subhead {
    font-size: 18px;
    color: #444;
    margin: 0 0 16px;
}


.share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.share-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-right: 4px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    text-decoration: none;
    color: #374151;
    background-color: #f9fafb;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.share-button:hover {
    background-color: #eef2ff;
    border-color: #9ca3af;
    transform: translateY(-1px);
}


.divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 16px 0 24px;
}


.article-body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.article-body p {
    margin: 0 0 16px;
}


.site-footer {
    border-top: 1px solid #e0e0e0;
    background-color: #ffffff;
    padding: 16px 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

.bottom-logos {
    margin-top: 40px;
    text-align: center;
}

.bottom-logos-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
}
