/* FSPIM Custom Styles */

/* Custom Elements */
wpheader,
wpcontent,
wp-footer {
    display: block;
}

/* Primary Menu Submenu Rounded Items */
#navbar ul li ul li:first-child > a,
#navbar ul li ul li:first-child > button {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

#navbar ul li ul li:last-child > a,
#navbar ul li ul li:last-child > button {
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

#navbar ul li ul li:hover {
    background-color: #f9fafb;
}

/* Fix counter text direction */
.stats-counter {
    direction: ltr !important;
    unicode-bidi: embed;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.stats-counter span {
    direction: ltr !important;
    unicode-bidi: embed;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fafafa;
}

::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
}

/* Navbar shadow on scroll */
.navbar-scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    backdrop-blur: 12px;
}

/* Animation utilities */
.opacity-0 {
    opacity: 0;
}

/* Fade in animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-up-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.animate-fade-in-up-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #e31b23;
    outline-offset: 2px;
}

/* Focus states for common interactive elements */
a:hover,
button:hover {
    text-decoration: none;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    nav,
    footer,
    .no-print {
        display: none !important;
    }
}

/* ===================================
   Single Post Semantic Styles
   WordPress TinyMCE Compatible
   All styling via parent selector
   =================================== */

/* Post Container */
.single-post {
    background: #ffffff;
}

/* Single Page Container */
.single-page {
    background: #ffffff;
}

/* Post Header (outside post-content) */
.post-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Page Title */
.page-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #171717;
    margin-bottom: 1rem;
}

/* Page Meta */
.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    color: #737373;
    font-size: 0.875rem;
}

.page-meta > span:not(:last-child)::after {
    content: "•";
    margin-left: 1rem;
    color: #d4d4d4;
}

/* Featured Image (Page) */
.page-featured-image {
    margin: 2rem 0;
    border-radius: 1.5rem;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-image-caption {
    padding: 1rem;
    background: #fafafa;
    color: #525252;
    font-size: 0.875rem;
    text-align: center;
    font-style: italic;
}

.post-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #171717;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    color: #737373;
    font-size: 0.875rem;
}

.post-meta > span:not(:last-child)::after {
    content: "•";
    margin-left: 1rem;
    color: #d4d4d4;
}

/* Featured Image (outside post-content) */
.post-featured-image {
    margin: 2rem 0;
    border-radius: 1.5rem;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-image-caption {
    padding: 1rem;
    background: #fafafa;
    color: #525252;
    font-size: 0.875rem;
    text-align: center;
    font-style: italic;
}

/* ===================================
   Post Content - Parent Based Selectors
   All elements styled via .post-content parent
   =================================== */

/* Base Typography */
.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #262626;
}

.post-content p {
    margin-bottom: 1.5rem;
}

/* Lead Paragraph */
.post-content p.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #404040;
    font-weight: 400;
}

/* Headings */
.post-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
    color: #171717;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    font-family: 'Instrument Sans', system-ui, sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.3;
    color: #262626;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #404040;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Blockquote */
.post-content blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: #fafafa;
    border-left: 4px solid #e31b23;
    border-radius: 0.75rem;
}

.post-content blockquote p {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #262626;
    margin-bottom: 1rem;
}

.post-content blockquote cite {
    display: block;
    font-size: 0.875rem;
    color: #737373;
    font-style: normal;
}

.post-content blockquote cite::before {
    content: "— ";
}

/* Lists */
.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.post-content ol li {
    margin-bottom: 0.5rem;
    list-style-type: decimal;
}

.post-content li strong {
    color: #171717;
    font-weight: 600;
}

/* Tables */
.post-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.post-content thead {
    background: #fafafa;
}

.post-content th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #171717;
    border: 1px solid #e5e5e5;
}

.post-content td {
    padding: 1rem;
    border: 1px solid #e5e5e5;
    color: #404040;
}

.post-content tbody tr:nth-child(even) {
    background: #fafafa;
}

.post-content tfoot {
    background: #f4f4f4;
    font-weight: 600;
}

.post-content tfoot td {
    color: #171717;
}

/* Images */
.post-content figure {
    margin: 2rem 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.post-content figure.alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.post-content figure.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.post-content figure.aligncenter {
    text-align: center;
}

.post-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #737373;
    text-align: center;
    font-style: italic;
}

/* Code Block */
.post-content pre {
    background: #171717;
    color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-content pre code {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.post-content code {
    font-family: 'Fira Code', 'Consolas', monospace;
}

/* Separator */
.post-content hr {
    border: none;
    border-top: 2px solid #e5e5e5;
    margin: 3rem 0;
}

/* Clear floats */
.post-content .clear {
    clear: both;
}

/* Text Alignment Utilities */
.post-content .has-text-align-center,
.post-content .aligncenter {
    text-align: center;
}

.post-content .has-text-align-left,
.post-content .alignleft {
    text-align: left;
}

.post-content .has-text-align-right,
.post-content .alignright {
    text-align: right;
}

/* Links in content */
.post-content a {
    color: #e31b23;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.post-content a:hover {
    color: #b91c1c;
    text-decoration-thickness: 2px;
}

/* ===================================
   WordPress Core Blocks
   All styling via .post-content parent
   =================================== */

/* Gallery Block */
.post-content .gallery {
    margin: 2.5rem 0;
}

.post-content .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.post-content .gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.post-content .gallery-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #737373;
    font-style: italic;
}

/* Pullquote Block */
.post-content .pullquote {
    margin: 3rem 0;
    padding: 0;
    text-align: center;
}

.post-content .pullquote blockquote {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.post-content .pullquote blockquote p {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-style: italic;
    color: #171717;
    line-height: 1.5;
    max-width: 4xl;
    margin: 0 auto;
}

.post-content .pullquote figcaption {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #737373;
}

/* Buttons Block */
.post-content .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.post-content .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: #e31b23;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.2s;
}

.post-content .button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

.post-content .button.is-primary {
    background: #e31b23;
}

.post-content .button.is-secondary {
    background: #262626;
}

/* Columns Block */
.post-content .columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.post-content .column {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 1rem;
}

.post-content .column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.75rem;
}

.post-content .column p {
    color: #525252;
    font-size: 0.9375rem;
}

/* Group Block */
.post-content .group {
    margin: 2.5rem 0;
    padding: 2rem;
    border-radius: 1rem;
}

.post-content .group.has-background {
    background: #fafafa;
}

/* Media & Text Block */
.post-content .media-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
    align-items: center;
}

.post-content .media-text__media {
    margin: 0;
}

.post-content .media-text__media img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.post-content .media-text__content {
    padding: 1rem 0;
}

.post-content .media-text__content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.75rem;
}

/* Cover Block */
.post-content .cover {
    position: relative;
    margin: 3rem 0;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-content .cover-bg {
    position: absolute;
    inset: 0;
}

.post-content .cover-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content .cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.post-content .cover-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    color: white;
}

.post-content .cover-content h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.post-content .cover-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* File Block */
.post-content .file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    gap: 1.5rem;
}

.post-content .file-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.post-content .file-icon {
    width: 40px;
    height: 40px;
    color: #e31b23;
    flex-shrink: 0;
}

.post-content .file-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #171717;
    font-weight: 500;
}

.post-content .file-link:hover {
    color: #e31b23;
}

.post-content .file-name {
    font-size: 0.9375rem;
}

.post-content .file-size {
    font-size: 0.8125rem;
    color: #737373;
}

/* Details Block */
.post-content .details {
    background: #fafafa;
    border-radius: 0.75rem;
    margin: 2rem 0;
    overflow: hidden;
}

.post-content .details summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #171717;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-content .details summary::-webkit-details-marker {
    display: none;
}

.post-content .details summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #e31b23;
    transition: transform 0.2s;
}

.post-content .details[open] summary::after {
    content: '−';
}

.post-content .details-content {
    padding: 0 1.5rem 1.5rem;
    color: #404040;
}

/* Embed Block */
.post-content .embed {
    margin: 2.5rem 0;
}

.post-content .embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #171717;
}

.post-content .embed-responsive iframe,
.post-content .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-content .embed-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #737373;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Spacer Block */
.post-content .spacer {
    height: 2rem;
}

/* Tag Cloud */
.post-content .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 0.75rem;
}

.post-content .tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: white;
    color: #525252;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s;
}

.post-content .tag:hover {
    background: #e31b23;
    color: white;
}

/* Audio Block */
.post-content .audio {
    margin: 2.5rem 0;
}

.post-content .audio audio {
    width: 100%;
    border-radius: 0.75rem;
}

.post-content .audio-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #737373;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Video Block */
.post-content .video {
    margin: 2.5rem 0;
}

.post-content .video video {
    width: 100%;
    border-radius: 0.75rem;
    background: #171717;
}

.post-content .video-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #737373;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Footnotes */
.post-content .footnotes {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.post-content .footnotes ol {
    padding-left: 1.5rem;
    margin: 0;
}

.post-content .footnotes li {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.post-content .footnotes li p {
    margin: 0;
    display: inline;
}

.post-content .footnotes a {
    font-size: 0.75rem;
    vertical-align: super;
}

/* Additional alignment utilities */
.post-content figure.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-content figure.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.post-content figure.alignwide {
    max-width: 100%;
}

.post-content figure.alignfull {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-content .media-text {
        grid-template-columns: 1fr;
    }

    .post-content .file {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-content .buttons {
        flex-direction: column;
    }

    .post-content .button {
        width: 100%;
    }
}

/* Post Tags */
.post-tags {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f4f4f4;
}

.tags-label {
    font-weight: 600;
    color: #737373;
    margin-right: 0.5rem;
}

.post-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #fafafa;
    color: #525252;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.post-tag:hover {
    background: #fee2e2;
    color: #b91c1c;
}

/* Post Navigation */
.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f4f4f4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    display: flex;
    flex-direction: column;
}

.post-navigation a {
    text-decoration: none;
    color: inherit;
}

.post-navigation a:hover {
    color: #e31b23;
}

.nav-label {
    font-size: 0.75rem;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.nav-title {
    font-weight: 600;
    color: #171717;
    transition: color 0.2s;
}

/* Comments Section */
.comments-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.comments-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    color: #171717;
    margin-bottom: 2rem;
}

.comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f4f4f4;
}

.comment:last-child {
    border-bottom: none;
}

.comment-body {
    display: flex;
    flex-direction: column;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #262626;
}

.comment-author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-author-badge {
    font-size: 0.75rem;
    background: #e31b23;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    margin-left: 0.5rem;
}

.comment-date {
    font-size: 0.875rem;
    color: #a3a3a3;
}

.comment-content {
    color: #404040;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 0;
}

.comment-actions {
    margin-top: 0.5rem;
}

.comment-reply-link {
    font-size: 0.875rem;
    color: #e31b23;
    text-decoration: none;
    font-weight: 500;
}

.comment-reply-link:hover {
    color: #b91c1c;
}

/* Nested Comments */
.children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1.5rem;
}

/* Comment Form */
.comment-respond {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.comment-reply-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    color: #171717;
    margin-bottom: 1rem;
}

.comment-notes {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 1.5rem;
}

.required {
    color: #e31b23;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    font-weight: 500;
    color: #262626;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    color: #262626;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #e31b23;
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 1.5rem;
}

.submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: #e31b23;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
}

.submit:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wp-block-image.alignleft,
    .wp-block-image.alignright {
        float: none;
        margin: 2rem 0;
    }

    blockquote.wp-block-quote {
        padding: 1.5rem;
    }

    .children {
        padding-left: 1rem;
    }
}
