/*
Theme Name: SamuraiWP
Theme URI: https://example.com/samuraiwp
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme with full functionality including custom menus, widget areas, custom post types, and theme customizer support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: samuraiwp
Tags: custom-menu, widgets, custom-post-types, theme-options
*/

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

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

html {
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* =Layout
-------------------------------------------------------------- */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: #333;
    color: #fff;
    padding: 8px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-branding {
    flex: 0 0 auto;
}

.site-branding h1 {
    margin: 0;
    font-size: 2rem;
}

.site-branding h1 a {
    color: #fff;
    text-decoration: none;
}

.site-description {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo {
    height: 50px;
    width: auto;
}

/* =Navigation
-------------------------------------------------------------- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    transition: transform 0.3s;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.menu-toggle.active .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.main-navigation {
    flex: 0 0 auto;
    margin-left: auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.main-navigation li:last-child {
    margin-right: 0;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background-color: #555;
}

/* Button style for menu items with 'button' class */
.main-navigation .button > a {
    background-color: #DAA520;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.main-navigation .button > a:hover,
.main-navigation .button > a:focus {
    background-color: #B8860B;
}

/* Submenu toggle button */
.submenu-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.submenu-toggle:hover,
.submenu-toggle:focus {
    background-color: #555;
    outline: 2px solid #fff;
    outline-offset: -2px;
}

/* Caret icon */
.submenu-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s ease;
}

/* Rotate caret when submenu is open */
.submenu-open > .submenu-toggle .submenu-icon {
    transform: rotate(180deg);
}

/* Submenu styling */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    display: none;
    min-width: 200px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Show submenu when open */
.main-navigation .submenu-open > ul {
    display: block;
}

.main-navigation ul ul li {
    display: block;
    margin: 0;
}

.main-navigation ul ul a {
    display: block;
    padding: 12px 20px;
}

/* Nested submenus */
.main-navigation ul ul ul {
    left: 100%;
    top: 0;
}

/* Focus visible styles for accessibility */
.main-navigation a:focus-visible,
.submenu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* =Hero Section
-------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B6914 0%, #B8860B 25%, #DAA520 50%, #B8860B 75%, #8B6914 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="circuit" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><rect width="120" height="120" fill="none"/><circle cx="10" cy="10" r="2" fill="%23000" opacity="0.3"/><circle cx="110" cy="10" r="2" fill="%23000" opacity="0.3"/><circle cx="10" cy="110" r="2" fill="%23000" opacity="0.3"/><circle cx="110" cy="110" r="2" fill="%23000" opacity="0.3"/><circle cx="60" cy="60" r="3" fill="%23000" opacity="0.4"/><line x1="10" y1="10" x2="60" y2="60" stroke="%23000" stroke-width="1" opacity="0.2"/><line x1="110" y1="10" x2="60" y2="60" stroke="%23000" stroke-width="1" opacity="0.2"/><line x1="10" y1="110" x2="60" y2="60" stroke="%23000" stroke-width="1" opacity="0.2"/><line x1="110" y1="110" x2="60" y2="60" stroke="%23000" stroke-width="1" opacity="0.2"/><rect x="58" y="25" width="4" height="10" fill="%23000" opacity="0.3"/><rect x="25" y="58" width="10" height="4" fill="%23000" opacity="0.3"/></pattern></defs><rect width="1200" height="600" fill="url(%23circuit)"/></svg>');
    background-size: 600px 300px;
    opacity: 0.4;
    animation: circuit-move 20s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes circuit-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-description {
    font-size: 1.5rem;
    color: #f5f5dc;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* =Content
-------------------------------------------------------------- */
ul,
ol {
    list-style-position: inside;
}

.site-content {
    margin: 40px 0;
}

.site-content .site-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0px;
}

/* Full width content when no sidebar */
.no-sidebar .site-content .site-container {
    grid-template-columns: 1fr;
}

/* Ensure blog page shows sidebar on right */
.blog .site-content .site-container,
.archive .site-content .site-container,
.search .site-content .site-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}


/* Full width template - make content area use full container width */
.page-template-template-full-width .site-content .site-container {
    grid-template-columns: 1fr;
    max-width: 1200px;
}

.page-template-template-full-width .content-area {
    max-width: 100%;
}

/* Home page full width - remove all padding and margins */
.home .site-content,
.home .site-content .site-container {
    max-width: none;
    padding: 0;
    margin: 0;
}

.home .content-area {
    max-width: none;
    padding: 0;
    margin: 0;
}

.home .site-main {
    margin: 0;
    padding: 0;
}

/* Hide H1 on home page */
.home .entry-header h1 {
    display: none;
}

.content-area {
    min-width: 0;
}

.site-main article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

/* Blog post listings */
.blog .site-main article,
.archive .site-main article,
.search .site-main article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
    grid-template-areas:
        "thumbnail content";
}

.blog .post-thumbnail,
.archive .post-thumbnail,
.search .post-thumbnail {
    grid-area: thumbnail;
    margin: 0;
}

.blog .entry-header,
.blog .entry-content,
.blog .entry-footer,
.archive .entry-header,
.archive .entry-content,
.archive .entry-footer,
.search .entry-header,
.search .entry-content,
.search .entry-footer {
    grid-area: content;
}

.blog .entry-header,
.archive .entry-header,
.search .entry-header {
    margin-bottom: 15px;
}

.blog .entry-content,
.archive .entry-content,
.search .entry-content {
    margin-top: 10px;
}

.blog .post-thumbnail img,
.archive .post-thumbnail img,
.search .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.blog .post-thumbnail a:hover img,
.archive .post-thumbnail a:hover img,
.search .post-thumbnail a:hover img {
    transform: scale(1.05);
}

/* Default placeholder for posts without featured images */
.blog article:not(.has-post-thumbnail) .post-thumbnail,
.archive article:not(.has-post-thumbnail) .post-thumbnail,
.search article:not(.has-post-thumbnail) .post-thumbnail {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.blog article:not(.has-post-thumbnail) .post-thumbnail::before,
.archive article:not(.has-post-thumbnail) .post-thumbnail::before,
.search article:not(.has-post-thumbnail) .post-thumbnail::before {
    content: "📄";
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #DAA520;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #B8860B;
}

/* Page header for archives */
.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #DAA520;
}

.page-header .page-title {
    margin: 0;
    color: #333;
}

.archive-description {
    margin-top: 10px;
    color: #666;
    font-size: 1.1rem;
}

.entry-header h1,
.entry-header h2 {
    margin-bottom: 5px;
}

.entry-header h2 a {
    color: #333;
    text-decoration: none;
}

.entry-header h2 a:hover {
    color: #0073aa;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Category and tag links in footer */
.entry-footer .cat-links,
.entry-footer .tags-links {
    font-size: 0.85rem;
    color: #777;
    margin-right: 15px;
}

.entry-footer .cat-links a,
.entry-footer .tags-links a {
    color: #666;
    text-decoration: none;
}

.entry-footer .cat-links a:hover,
.entry-footer .tags-links a:hover {
    color: #DAA520;
}

.entry-content {
    line-height: 1.8;
}

/* Spacing for content elements */
.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
    margin-top: 0;
}

.entry-content ul,
.entry-content ol {
    margin-top: 15px;
    margin-bottom: 20px;
}

.entry-content blockquote {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #DAA520;
    font-style: italic;
    color: #555;
}

.entry-content pre,
.entry-content code {
    margin-top: 15px;
    margin-bottom: 20px;
}

.entry-content table {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    border-collapse: collapse;
}

.entry-content table th,
.entry-content table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.entry-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.entry-content hr {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 0;
    border-top: 1px solid #ddd;
}

.entry-content figure,
.entry-content .wp-block-image,
.entry-content .wp-block-gallery {
    margin-top: 20px;
    margin-bottom: 20px;
}

.entry-content figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* =Sidebar
-------------------------------------------------------------- */
.widget-area {
    font-size: 0.95rem;
}

.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.widget ul li a {
    text-decoration: none;
    color: #333;
}

.widget ul li a:hover {
    color: #0073aa;
}

/* =Footer
-------------------------------------------------------------- */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 0;
    margin-top: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget .widget-title {
    border-bottom-color: #555;
    color: #fff;
}

.footer-widget .widget ul li a {
    color: #ccc;
}

.footer-widget .widget ul li a:hover {
    color: #fff;
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #fff;
    font-size: 0.9rem;
}

.site-info a {
    color: #fff;
    text-decoration: none;
}

.site-info a:hover {
    text-decoration: underline;
}

/* Footer Navigation Menu */
.footer-navigation {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation li {
    display: inline-block;
    margin: 0 15px;
}

.footer-navigation a {
    color: #fff;
    text-decoration: none;
}

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

/* =Pagination
-------------------------------------------------------------- */
.pagination {
    margin: 40px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    padding: 10px 15px;
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
}

.pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
}

.pagination .page-numbers:hover {
    background-color: #0073aa;
    color: #fff;
}

/* =Responsive
-------------------------------------------------------------- */
@media screen and (max-width: 730px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        flex-basis: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .main-navigation.active {
        max-height: 500px;
    }

    .main-navigation ul {
        display: block;
        padding-top: 20px;
    }

    .main-navigation li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #555;
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        padding: 15px 0;
        display: block;
    }

    .submenu-toggle {
        float: right;
        padding: 15px 10px;
    }

    /* Mobile submenu styling */
    .main-navigation ul ul {
        position: static;
        display: none;
        background-color: #444;
        padding-left: 20px;
        box-shadow: none;
    }

    .main-navigation .submenu-open > ul {
        display: block;
    }

    .main-navigation ul ul a {
        padding: 12px 0;
    }

    /* Nested submenus on mobile */
    .main-navigation ul ul ul {
        left: auto;
        top: auto;
        padding-left: 20px;
    }

    .site-content .site-container {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .site-content .site-container {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }

    /* Stack blog post layout on mobile */
    .blog .site-main article,
    .archive .site-main article,
    .search .site-main article {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog .post-thumbnail img,
    .archive .post-thumbnail img,
    .search .post-thumbnail img {
        height: 250px;
    }
}

/* =Content Sections - Full Width Backgrounds
-------------------------------------------------------------- */
/* Reset home page specific styles */
.home .content-area-home {
    max-width: none;
    padding: 0;
    margin: 0;
}

.home .content-area-home .site-main {
    margin: 0;
    padding: 0;
}

.home .content-area-home article {
    margin: 0;
    padding: 0;
    border: none;
}

/* Content sections with full-width backgrounds */
.content-section {
    width: 100%;
    position: relative;
}

/* Section content container with max-width */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}


/* Reset the inner content of full-width blocks to be constrained */
.content-section .wp-block-group > .wp-block-group__inner-container,
.content-section .wp-block-cover > .wp-block-cover__inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure proper spacing between sections */
.content-section + .content-section {
    margin-top: 0;
}

/* =WordPress Block Styles - Home Page Customizations
-------------------------------------------------------------- */

/* Reduce section padding by half on home page */
.home .wp-block-group,
.home .wp-block-cover {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Second section - Add borders around horizontal items */
.home .content-section:nth-of-type(2) .wp-block-column,
.home .content-section:nth-of-type(2) .wp-block-media-text,
.home .content-section:nth-of-type(2) .wp-block-columns > * {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Make icons bigger in second section */
.home .content-section:nth-of-type(2) img,
.home .content-section:nth-of-type(2) .wp-block-image img,
.home .content-section:nth-of-type(2) svg {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
}

.home .site-content {
    margin-bottom: 0;
}

.page-template-template-full-width-no-title .site-content .site-container {
    display: block;
}

.page-template-template-full-width-no-title .site-content {
    margin-top: 0;
    margin-bottom: 0;
}
.page-template-template-full-width-no-title .site-content .site-container {
    max-width: none;
    padding: 0;
}
.page-template-template-full-width-no-title .content-area,
.page-template-template-full-width-no-title .site-main {
    max-width: none;
    padding: 0;
}
.page-template-template-full-width-no-title article {
    max-width: none;
    padding: 0;
    margin: 0;
}
.page-template-template-full-width-no-title .entry-content {
    max-width: none;
}

/* =Pricing Card Styles
-------------------------------------------------------------- */
.pricing-card ul {
    list-style: none;
}

.pricing-card ul li {
    list-style-type: none;
}

/* Position the pricing card relatively to contain the absolute badge */
.pricing-card.featured {
    position: relative;
}

/* Position the "Most Popular" badge absolutely at the top */
.pricing-card.featured .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 10;
}

/* Remove top margin from heading in featured card */
.pricing-card.featured h3 {
    margin-top: 0;
}

/* Pricing blocks container - max width and padding */
.page-template-template-full-width-no-title .wp-block-columns.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}