.facts-block {
    padding: 0;
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
    .facts-block {
        padding: 1rem 1.25rem;
    }
}
.facts-inner {
    background: var(--facts-bg, rgba(255, 255, 255, 0.75));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--facts-border, rgba(0, 0, 0, 0.1));
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: background 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
    .facts-inner {
        padding: 1rem 1.25rem;
    }
}
.facts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .facts-header {
        margin-bottom: 0.75rem;
    }
}
.facts-header h2 {
    font-size: 0.875rem;
    font-weight: bold;
    margin: 0;
    color: #1f2937;
}
@media (min-width: 768px) {
    .facts-header h2 {
        font-size: 1.125rem;
    }
}
html[data-wp-dark-mode-active] .facts-header h2,
html.wp-dark-mode-theme-darkmode .facts-header h2 {
    color: #fff;
}
#refreshFacts {
    background: none;
    border: none;
    color: rgba(107, 114, 128, 0.5);
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.25rem;
}
@media (min-width: 768px) {
    #refreshFacts {
        font-size: 0.875rem;
    }
}
#refreshFacts:hover {
    color: #1f2937;
}
html[data-wp-dark-mode-active] #refreshFacts,
html.wp-dark-mode-theme-darkmode #refreshFacts {
    color: rgba(255, 255, 255, 0.5);
}
html[data-wp-dark-mode-active] #refreshFacts:hover,
html.wp-dark-mode-theme-darkmode #refreshFacts:hover {
    color: #fff;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}
.fact-item {
    background: #f3f4f6;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .fact-item {
        padding: 0.75rem 1rem;
    }
}
html[data-wp-dark-mode-active] .fact-item,
html.wp-dark-mode-theme-darkmode .fact-item {
    background: rgba(255, 255, 255, 0.05);
}
.fact-emoji {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
    .fact-emoji {
        font-size: 1.5rem;
    }
}
.fact-number {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
}
@media (min-width: 768px) {
    .fact-number {
        font-size: 1.25rem;
    }
}
html[data-wp-dark-mode-active] .fact-number,
html.wp-dark-mode-theme-darkmode .fact-number {
    color: #fff;
}
.fact-label {
    font-size: 0.625rem;
    color: #4b5563;
    margin-top: 0.125rem;
}
@media (min-width: 768px) {
    .fact-label {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
}
html[data-wp-dark-mode-active] .fact-label,
html.wp-dark-mode-theme-darkmode .fact-label {
    color: #d1d5db;
}