/* Inflation Monitor - Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navigation */
.nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.nav-update {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

/* Sections */
.section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.section-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.section-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #f9fafb;
}

.data-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.data-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.clickable-row {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.clickable-row:hover {
    background-color: #f9fafb;
}

.country-cell {
    font-weight: 500;
}

.value-cell {
    font-variant-numeric: tabular-nums;
}

/* Change indicators */
.change-up {
    color: #dc2626;
}

.change-down {
    color: #16a34a;
}

.change-neutral {
    color: #6b7280;
}

/* Status badges */
.status-good {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-warning {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-alert {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Outlook Table */
.outlook-table .source-cell {
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
}

.outlook-table .assessment-cell {
    font-size: 0.8rem;
    color: #4b5563;
    font-style: italic;
    max-width: 280px;
}

/* Policy Rates Grid */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0;
}

.rate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-right: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.rate-card:nth-child(4n) {
    border-right: none;
}

.rate-card:nth-last-child(-n+4) {
    border-bottom: none;
}

.rate-flag {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.rate-name {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.rate-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0.25rem 0;
}

.rate-change {
    font-size: 0.7rem;
    color: #6b7280;
}

/* Metric Cards (for country pages) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.metric-card {
    background: #f9fafb;
    border-radius: 6px;
    padding: 1rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111;
}

.metric-detail {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Charts */
.chart-container {
    padding: 1.5rem;
}

.chart-wrapper {
    position: relative;
    height: 300px;
}

/* Forecast Tables */
.forecast-table {
    width: 100%;
    border-collapse: collapse;
}

.forecast-table th,
.forecast-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.forecast-table thead {
    background: #f9fafb;
}

.forecast-table th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
}

/* Sources Section */
.sources-section {
    padding: 1.5rem;
}

.source-item {
    margin-bottom: 1rem;
}

.source-item:last-child {
    margin-bottom: 0;
}

.source-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.source-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.source-link:hover {
    text-decoration: underline;
}

.source-detail {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Footer */
.page-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: #2563eb;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Target Explanation Box */
.target-box {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 1rem 1.5rem;
    margin: 1rem 1.5rem;
    border-radius: 0 6px 6px 0;
}

.target-box blockquote {
    font-style: italic;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.target-box cite {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .data-table {
        font-size: 0.8rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
    
    .outlook-table .assessment-cell {
        display: none;
    }
    
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rate-card:nth-child(2n) {
        border-right: none;
    }
    
    .rate-card:nth-child(4n) {
        border-right: 1px solid #f3f4f6;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   POLICY CHANGE STYLES - Add to styles.css
   ============================================================ */

/* Target change badge on index page */
.target-new-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    margin-left: 0.25rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Policy change alert box on country pages */
.policy-change-alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.policy-change-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.policy-change-icon {
    font-size: 1.1rem;
}

.policy-change-header strong {
    color: #1e40af;
    font-size: 0.95rem;
}

.policy-change-date {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.policy-change-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-change-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-label {
    color: #64748b;
    font-size: 0.85rem;
    min-width: 110px;
}

.policy-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.policy-value.previous {
    color: #6b7280;
    text-decoration: line-through;
}

.policy-value.current {
    color: #059669;
}

.policy-change-note {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
}

/* Policy Updates section (Option 2) */
.policy-updates-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.policy-updates-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: #cbd5e1;
}

.policy-event {
    position: relative;
    padding-bottom: 1rem;
}

.policy-event:last-child {
    padding-bottom: 0;
}

.policy-event::before {
    content: '';
    position: absolute;
    left: -1.15rem;
    top: 0.35rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #2563eb;
}

.policy-event-date {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.policy-event-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0.25rem 0;
}

.policy-event-description {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}
/* ============================================================
   POLICY CHANGE STYLES - Add to styles.css
   ============================================================ */

/* Target change badge on index page */
.target-new-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    margin-left: 0.25rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Policy change alert box on country pages */
.policy-change-alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.policy-change-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.policy-change-icon {
    font-size: 1.1rem;
}

.policy-change-header strong {
    color: #1e40af;
    font-size: 0.95rem;
}

.policy-change-date {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.policy-change-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-change-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-label {
    color: #64748b;
    font-size: 0.85rem;
    min-width: 110px;
}

.policy-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.policy-value.previous {
    color: #6b7280;
    text-decoration: line-through;
}

.policy-value.current {
    color: #059669;
}

.policy-change-note {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
}

/* Policy Updates section (Option 2) */
.policy-updates-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.policy-updates-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: #cbd5e1;
}

.policy-event {
    position: relative;
    padding-bottom: 1rem;
}

.policy-event:last-child {
    padding-bottom: 0;
}

.policy-event::before {
    content: '';
    position: absolute;
    left: -1.15rem;
    top: 0.35rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #2563eb;
}

.policy-event-date {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.policy-event-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0.25rem 0;
}

.policy-event-description {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}

/* Added 2026-01-26: Policy changes + Newsletter */
/* ============================================================
   POLICY CHANGE STYLES - Add to styles.css
   ============================================================ */

/* Target change badge on index page */
.target-new-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    margin-left: 0.25rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Policy change alert box on country pages */
.policy-change-alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.policy-change-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.policy-change-icon {
    font-size: 1.1rem;
}

.policy-change-header strong {
    color: #1e40af;
    font-size: 0.95rem;
}

.policy-change-date {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.policy-change-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-change-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-label {
    color: #64748b;
    font-size: 0.85rem;
    min-width: 110px;
}

.policy-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.policy-value.previous {
    color: #6b7280;
    text-decoration: line-through;
}

.policy-value.current {
    color: #059669;
}

.policy-change-note {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
}

/* Policy Updates section (Option 2) */
.policy-updates-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.policy-updates-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: #cbd5e1;
}

.policy-event {
    position: relative;
    padding-bottom: 1rem;
}

.policy-event:last-child {
    padding-bottom: 0;
}

.policy-event::before {
    content: '';
    position: absolute;
    left: -1.15rem;
    top: 0.35rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #2563eb;
}

.policy-event-date {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.policy-event-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0.25rem 0;
}

.policy-event-description {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}
/* ============================================================
   POLICY CHANGE STYLES - Add to styles.css
   ============================================================ */

/* Target change badge on index page */
.target-new-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    margin-left: 0.25rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Policy change alert box on country pages */
.policy-change-alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.policy-change-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.policy-change-icon {
    font-size: 1.1rem;
}

.policy-change-header strong {
    color: #1e40af;
    font-size: 0.95rem;
}

.policy-change-date {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.policy-change-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-change-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-label {
    color: #64748b;
    font-size: 0.85rem;
    min-width: 110px;
}

.policy-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.policy-value.previous {
    color: #6b7280;
    text-decoration: line-through;
}

.policy-value.current {
    color: #059669;
}

.policy-change-note {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
}

/* Policy Updates section (Option 2) */
.policy-updates-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.policy-updates-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: #cbd5e1;
}

.policy-event {
    position: relative;
    padding-bottom: 1rem;
}

.policy-event:last-child {
    padding-bottom: 0;
}

.policy-event::before {
    content: '';
    position: absolute;
    left: -1.15rem;
    top: 0.35rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #2563eb;
}

.policy-event-date {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.policy-event-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0.25rem 0;
}

.policy-event-description {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}
/* ============================================================
   POLICY CHANGE STYLES - Add to styles.css
   ============================================================ */

/* Target change badge on index page */
.target-new-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    margin-left: 0.25rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Policy change alert box on country pages */
.policy-change-alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.policy-change-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.policy-change-icon {
    font-size: 1.1rem;
}

.policy-change-header strong {
    color: #1e40af;
    font-size: 0.95rem;
}

.policy-change-date {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.policy-change-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-change-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-label {
    color: #64748b;
    font-size: 0.85rem;
    min-width: 110px;
}

.policy-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.policy-value.previous {
    color: #6b7280;
    text-decoration: line-through;
}

.policy-value.current {
    color: #059669;
}

.policy-change-note {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
}

/* Policy Updates section (Option 2) */
.policy-updates-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.policy-updates-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: #cbd5e1;
}

.policy-event {
    position: relative;
    padding-bottom: 1rem;
}

.policy-event:last-child {
    padding-bottom: 0;
}

.policy-event::before {
    content: '';
    position: absolute;
    left: -1.15rem;
    top: 0.35rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #2563eb;
}

.policy-event-date {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.policy-event-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0.25rem 0;
}

.policy-event-description {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}
