/**
 * Custom CSS for GAWRYŚ Fundacja Rodzinna theme
 */

/* Pagination Styling */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: #f9fafb;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background-color: #fecaca;
    color: #b91c1c;
}

.pagination .page-numbers.current {
    background-color: #b91c1c;
    color: white;
}

.pagination .prev,
.pagination .next {
    font-size: 14px;
}

/* Post Content Styling */
.entry-content {
    line-height: 1.7;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.entry-content h2 {
    font-size: 1.5rem;
}

.entry-content h3 {
    font-size: 1.25rem;
}

.entry-content h4 {
    font-size: 1.125rem;
}

.entry-content ul,
.entry-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content a {
    color: #b91c1c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #7f1d1d;
}

.entry-content blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #b91c1c;
    background-color: #fecaca;
    background-opacity: 0.5;
    font-style: italic;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
}

/* Fix for WP Admin Bar */
body.admin-bar .fixed {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .fixed {
        top: 46px;
    }
}