/* 
Theme Name: Twenty Twenty Child by Inedit
Description: Child theme of Twenty Twenty with Inedit CSS Customizer integration
Author: Your Name
Template: twentytwenty
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwenty-child
*/

/* ==========================================================================
   CSS VARIABLES & ROOT SETTINGS
   ========================================================================== */

:root {
    /* Advertisement Variables */
    --ad-label-color: #888;
    --ad-label-size: 11px;
    --ad-label-weight: 500;
    --ad-spacing: 4px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --ad-label-color: #aaa;
    }
}
.site-logo img {
    max-height: 7rem;
    transition: height 0.15s linear, width 0.15s linear, max-height 0.15s linear;
}
.header-footer-group {
    padding: 0 !important;
}

/* ==========================================================================
   INEDIT INTEGRATION & BASE ENHANCEMENTS
   ========================================================================== */

.inedit-customized {
    /* Marker class for when Inedit is active */
}

/* Enhanced Button Styles */
.inedit-customized .button,
.inedit-customized .faux-button {
    transition: all 0.3s ease;
    border-radius: 4px;
}

.inedit-customized .button:hover,
.inedit-customized .faux-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Navigation Styles */
.inedit-customized .main-navigation a {
    transition: color 0.3s ease;
    position: relative;
}

.inedit-customized .main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.inedit-customized .main-navigation a:hover::after {
    width: 100%;
}

/* Enhanced Typography */
.inedit-customized .entry-content {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   FORM ENHANCEMENTS
   ========================================================================== */

.inedit-customized input[type="text"],
.inedit-customized input[type="email"],
.inedit-customized input[type="url"],
.inedit-customized input[type="password"],
.inedit-customized input[type="search"],
.inedit-customized input[type="number"],
.inedit-customized input[type="tel"],
.inedit-customized textarea,
.inedit-customized select {
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inedit-customized input[type="text"]:focus,
.inedit-customized input[type="email"]:focus,
.inedit-customized input[type="url"]:focus,
.inedit-customized input[type="password"]:focus,
.inedit-customized input[type="search"]:focus,
.inedit-customized input[type="number"]:focus,
.inedit-customized input[type="tel"]:focus,
.inedit-customized textarea:focus,
.inedit-customized select:focus {
    box-shadow: 0 0 0 3px rgba(205, 38, 83, 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border-color: currentColor;
}

input[type="search"]:focus {
    outline: thin dotted;
    outline-offset: -4px;
}

/* ==========================================================================
   TYPOGRAPHY & CONTENT LAYOUT
   ========================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6, .faux-heading {
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums;
    font-weight: 700;
    letter-spacing: -0.0415625em;
    line-height: 1.25;
    margin: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 2rem auto 2rem;
}

/* Entry Titles */
h1.entry-title,
h2.entry-title {
    margin: 0;
    text-align: left !important;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
    text-decoration: underline;
}

/* Content Layout */
.post-inner {
    padding-top: 1rem;
}

.singular .entry-header {
    padding: 1rem 0;
}

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    max-width: 100%;
    width: 100%;
}

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

.entry-content > * {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.25em !important;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content a:hover,
.entry-content a:focus {
    text-decoration: none;
}

.entry-content p,
.entry-content li {
    line-height: 1.4;
}

.entry-content li img {
    display: inline-block;
}

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

.entry-content hr {
    margin: 4rem auto;
}

/* Intro Text */
.intro-text {
    margin-top: 2rem;
}

.singular .intro-text {
    font-size: 2rem;
    letter-spacing: -0.0315em;
    line-height: 1.4;
}

/* Post Meta */
.post-meta-wrapper {
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    width: 100%;
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #cd2653;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.0333em;
    line-height: 1.25;
    margin: 0;
    opacity: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.15s linear;
}

button:focus,
button:hover,
.button:focus,
.button:hover,
.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SECTIONS & LAYOUT STRUCTURE
   ========================================================================== */

section {
    padding: 5rem 0;
    width: 100%;
}

.section-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 120rem;
    width: 100%;
}

.section-inner.max-percentage {
    width: 100%;
}

.section-inner.thin {
    max-width: 100rem;
}

.section-inner.small {
    max-width: 80rem;
}

.section-inner.medium {
    max-width: 100rem;
}

.section-inner.no-margin {
    margin: 0;
}

/* ==========================================================================
   COMMENTS SYSTEM
   ========================================================================== */

.comment-respond::after {
    clear: both;
    content: "";
    display: block;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    color: #6d6d6d;
    font-size: 1.6rem;
    line-height: 1.4;
    margin: -3rem 0 4rem 0;
    text-align: center;
}

.comment-respond .required-field-message {
    display: inline-block;
}

.comment-respond p {
    line-height: 1.1;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.comment-respond p:not(.comment-notes) {
    max-width: 100rem;
}

.comment-form-cookies-consent {
    align-items: baseline;
    display: flex;
}

.comment-respond > p:last-of-type {
    margin-bottom: 0;
}

.comment-respond label {
    display: block;
}

.comment-respond input[type="checkbox"] + label {
    font-size: 1.5rem;
    line-height: 1.25;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
    margin-bottom: 0;
}

.comment-respond textarea {
    height: 15rem;
}

.comment-respond #submit {
    display: block;
}

.comment-respond .comments-closed {
    text-align: center;
}

/* Reply Respond */
.comments .comment-respond {
    padding: 3rem 0 0;
}

.comments .comment-respond .comment-reply-title,
.comments .comment-respond .comment-notes,
.comments .comment-respond .logged-in-as {
    text-align: left;
}

.comment-reply-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 6rem;
}

.comments .comment-respond .comment-reply-title {
    font-size: 2rem !important;
}

.comment-reply-title small {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.0277em;
    margin: 0.5rem 0 0 0;
    white-space: nowrap;
}

.comment-reply-title small a {
    text-decoration: none;
}

.comment-reply-title small a:focus,
.comment-reply-title small a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   PAGINATION SYSTEMS
   ========================================================================== */

/* Post Navigation Links */
.post-nav-links {
    border-radius: 0.4rem;
    display: table;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1;
    margin: 3em auto 0 auto;
    padding: 0;
    width: calc(100% - 1rem);
    max-width: 58rem;
    text-align: center;
}

.post-nav-links > span.label {
    padding: 1em 0;
}

.post-nav-links > * {
    padding: 1em 0.75em;
}

/* Smart Pagination */
.smart-pagination,
.smart-post-pagination {
    margin: 2rem 0;
    padding: 1rem 0;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-link,
.pagination-current,
.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-link {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
}

.pagination-link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    text-decoration: none;
}

.pagination-current {
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
    font-weight: 600;
}

.pagination-dots {
    background: transparent;
    color: #666;
    border: none;
    font-weight: bold;
    cursor: default;
}

.pagination-prev,
.pagination-next {
    margin: 0 0.5rem;
}

.pagination-prev a,
.pagination-next a {
    background: #667eea;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #667eea;
}

.pagination-prev a:hover,
.pagination-next a:hover {
    background: #5a6fd8;
    text-decoration: none;
}

.post-nav-links.smart-pagination {
    border-radius: 8px;
    margin: auto;
}

.post-nav-links.smart-pagination .label {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
}

/* ==========================================================================
   ADVERTISEMENT STYLING
   ========================================================================== */
/*
ins.adsbygoogle,
div[id^="gpt-ad-"],
div[id^="google_ads_iframe_"] {
    position: relative !important;
    display: block !important;
    margin: 28px auto;
    padding: 0;
    background: transparent;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    height: auto !important;
}


ins.adsbygoogle::before,
div[id^="gpt-ad-"]::before,
div[id^="google_ads_iframe_"]::before {
    content: "ADVERTISEMENT";
    display: block;
    text-align: center;
    font-size: var(--ad-label-size);
    font-weight: var(--ad-label-weight);
    color: var(--ad-label-color);
    letter-spacing: 0.08em;
    margin-bottom: var(--ad-spacing);
}
*/
.ads {
    position: relative !important;
    display: block !important;
    margin: 5px auto;
    padding: 10px;
    background: transparent;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    height: auto !important;
}

.ads::before {
    content: "ADVERTISEMENT";
    display: block;
    text-align: center;
    font-size: var(--ad-label-size);
    font-weight: var(--ad-label-weight);
    color: var(--ad-label-color);
    letter-spacing: 0.08em;
    margin-bottom: var(--ad-spacing);
}

/* ==========================================================================
   MODERN SEARCH FUNCTIONALITY
   ========================================================================== */

.modern-search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.modern-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.modern-search-box:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.modern-search-box.active {
    background: white;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.search-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modern-search-box:hover .search-icon {
    opacity: 1;
}

.search-placeholder {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    white-space: nowrap;
}

.header-navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-menu-wrapper {
    flex: 1;
}

/* Search Modal */
.modern-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-search-modal.active {
    opacity: 1;
    visibility: visible;
}

.modern-search-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-search-modal.active .modern-search-content {
    transform: translateY(0);
}

.search-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.search-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.modern-search-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.modern-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-search-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-submit-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-50%) scale(1.05);
}

.search-submit-btn svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.search-suggestions {
    margin-top: 20px;
}

.search-suggestions-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    background: #f1f3f4;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: #667eea;
    color: white;
}

/* ==========================================================================
   SEARCH PAGE STYLING
   ========================================================================== */

.search-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.search-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.search-page-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.search-query {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0 0 30px 0;
}

.results-count {
    color: #718096;
    font-weight: normal;
}

.search-form {
    align-items: stretch;
    display: contents;
    flex-wrap: nowrap;
    margin: 0 0 -0.8rem -0.8rem;
}

.search-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
}

.search-field {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.search-submit {
    background: #667eea;
    border: none;
    padding: 16px 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background: #5a67d8;
}

/* Search Results */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-result-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.result-content {
    flex: 1;
}

.result-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.post-type {
    background: #edf2f7;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: #718096;
}

.result-title {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.result-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-title a:hover {
    color: #667eea;
}

.result-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #5a67d8;
    transform: translateX(4px);
}

.comments-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #718096;
    font-size: 0.9rem;
}

.result-thumbnail {
    width: 200px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-item:hover .result-thumbnail img {
    transform: scale(1.05);
}

/* No Results Styling */
.no-results {
    text-align: center;
    padding: 60px 40px;
}

.no-results-icon {
    color: #cbd5e0;
    margin-bottom: 24px;
}

.no-results-title {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 300;
}

.no-results-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions {
    background: #f7fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    margin: 0 0 16px 0;
    color: #2d3748;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    padding: 6px 0;
    color: #4a5568;
}

.popular-content {
    max-width: 800px;
    margin: 0 auto;
}

.popular-content h3 {
    margin-bottom: 24px;
    color: #2d3748;
    font-size: 1.5rem;
}

.popular-posts {
    display: grid;
    gap: 20px;
}

.popular-post {
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.popular-post h4 {
    margin: 0 0 8px 0;
}

.popular-post a {
    color: #667eea;
    text-decoration: none;
}

.popular-post p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

/* Search Pagination */
.search-pagination {
    margin-top: 40px;
    text-align: center;
}

.search-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.search-pagination a,
.search-pagination .current {
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-pagination a {
    background: white;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.search-pagination a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.search-pagination .current {
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
}

/* ==========================================================================
   SINGLE POST LAYOUT WITH SIDEBAR
   ========================================================================== */

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.sidebar-content-area {
    top: 2rem;
    max-height: calc(100vh - 4rem);
}

/* AdSense Blocks */
.adsense-block-before-content,
.adsense-block-after-content {
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Social Sharing */
.social-sharing-section {
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 2rem 0;
}

.social-sharing-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.social-sharing-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.facebook-btn {
    background: #1877f2;
}

.tiktok-btn {
    background: #000;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Article Navigation */
.article-navigation-section {
    margin: 2rem 0;
    padding: 2rem 0;
}

.navigation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.nav-article {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-article:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.nav-article.disabled {
    opacity: 0.5;
}

.nav-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.next-article {
    text-align: right;
}

.nav-article h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.nav-article a {
    text-decoration: none;
    color: #333;
}

.nav-article a:hover {
    color: #3498db;
}

/* Related Articles */
.related-articles-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.related-articles-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #333;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.related-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card-content {
    padding: 1rem;
}

/* ==========================================================================
   SIDEBAR & WIDGETS
   ========================================================================== */

.sidebar-wrapper {
    padding: 2rem 0;
}

.sidebar-area {
    max-width: 100%;
}

.widget {
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.widget-content {
    padding: 1.5rem;
}

.widget-title {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.sidebar-adsense-widget,
.sidebar-adsense-widget-2 {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-item a {
    display: flex;
    gap: 0.75rem;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.category-count {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Popular Posts Widget */
.popular-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.popular-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post-item a {
    display: flex;
    gap: 0.75rem;
}

.popular-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tags Cloud Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-form p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter-signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-signup-form input[type="email"] {
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-signup-form button {
    padding: 0.75rem;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-signup-form button:hover {
    background: rgba(255,255,255,0.3);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.inedit-text-center { text-align: center; }
.inedit-text-left { text-align: left; }
.inedit-text-right { text-align: right; }

.inedit-margin-top { margin-top: 2rem; }
.inedit-margin-bottom { margin-bottom: 2rem; }

.inedit-padding-top { padding-top: 2rem; }
.inedit-padding-bottom { padding-bottom: 2rem; }

.footer-copyright {
    text-align: center;
}

.front-page-content .entry-content p:first-child {
    margin-top: 0;
}

.slide-content p {
    color: #fff !important;
}

.read-more-button-wrap {
    margin-top: 1em;
    text-align: center;
}

/* ==========================================================================
   ACCESSIBILITY & ANIMATIONS
   ========================================================================== */

.inedit-customized .skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.inedit-customized .skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    z-index: 999999;
    padding: 10px 15px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.pagination-link:focus,
.pagination-prev a:focus,
.pagination-next a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.inedit-customized *:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

.inedit-customized .button:focus,
.inedit-customized .faux-button:focus {
    outline-color: rgba(255, 255, 255, 0.8);
}

@keyframes ineditFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inedit-fade-in {
    animation: ineditFadeIn 0.6s ease-out;
}

/* ==========================================================================
   DARK MODE SUPPORT
   ========================================================================== */

.inedit-dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.inedit-dark-mode a {
    color: #66b3ff;
}

.inedit-dark-mode .button,
.inedit-dark-mode .faux-button {
    background-color: #333;
    color: #fff;
    border-color: #555;
}

@media (prefers-color-scheme: dark) {
    .pagination-link {
        background: #333;
        color: #fff;
        border-color: #555;
    }

    .pagination-link:hover {
        background: #667eea;
        border-color: #667eea;
    }

    .pagination-dots {
        color: #ccc;
    }

    .post-nav-links.smart-pagination {
        background: #2a2a2a;
    }

    .post-nav-links.smart-pagination .label {
        color: #fff;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .single-post-layout {
        grid-template-columns: 1fr 250px;
        gap: 2rem;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inedit-customized .button,
    .inedit-customized .faux-button {
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .header-navigation-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }

    .primary-menu-wrapper {
        display: none;
    }

    .modern-search-container {
        margin-left: 0;
        order: -1;
    }

    .modern-search-box {
        padding: 6px 12px;
        font-size: 13px;
    }

    .search-placeholder {
        display: none;
    }

    .search-icon {
        width: 16px;
        height: 16px;
        margin-right: 0;
    }

    .modern-search-content {
        padding: 25px;
        margin: 20px;
    }

    .search-title {
        font-size: 20px;
    }

    .modern-search-input {
        font-size: 16px;
        padding: 14px 45px 14px 16px;
    }

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

    .header-titles-wrapper .modern-search-container {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .sidebar-content-area {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .social-sharing-buttons {
        justify-content: center;
    }

    .navigation-wrapper {
        grid-template-columns: 1fr;
    }

    .next-article {
        text-align: left;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .widget-content {
        padding: 1rem;
    }

    .recent-post-item a,
    .popular-post-item a {
        flex-direction: column;
        gap: 0.5rem;
    }

    .recent-post-thumb,
    .popular-post-thumb {
        width: 100%;
        height: 150px;
        align-self: center;
    }

    .pagination-wrapper {
        gap: 0.25rem;
    }

    .pagination-link,
    .pagination-current,
    .pagination-dots {
        min-width: 35px;
        height: 35px;
    }

    .pagination-prev,
    .pagination-next {
        margin: 0 0.25rem;
    }

    .pagination-prev a,
    .pagination-next a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .search-page-container {
        padding: 20px 16px;
    }

    .search-header {
        padding: 30px 20px;
    }

    .search-page-title {
        font-size: 2rem;
    }

    .search-result-item {
        flex-direction: column;
        gap: 16px;
    }

    .result-thumbnail {
        width: 100%;
        height: 200px;
    }

    .result-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .inedit-customized .main-navigation a::after {
        display: none;
    }

    .author-page-container {
        padding: 0 16px;
    }

    .author-hero {
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }

    .author-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .author-name {
        font-size: 2.2rem;
    }

    .author-stats {
        justify-content: center;
        gap: 30px;
    }

    .author-social {
        justify-content: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .author-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-link span {
        display: none;
    }

    .social-link {
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
 .site-logo img {
width: 50% !important;
    margin: 0 !important;
}
.post-meta {
    gap: 10px !important;
    }
    .modern-search-box {
        padding: 6px 10px;
    }

    .search-icon {
        width: 14px;
        height: 14px;
    }

    .header-titles-wrapper .modern-search-container {
        right: 50px;
    }

    .front-page-content .entry-content p {
        margin-top: 0px;
    }

    .slide-content .read-more,
    .slide-content p {
        display: none;
    }

    .pagination-prev a,
    .pagination-next a {
        padding: 0.5rem;
        border-radius: 4px;
        font-size: 0;
    }

    .pagination-prev a::before {
        /*content: '←';*/
        font-size: 1rem;
    }

    .pagination-next a::before {
        /*content: '→';*/
        font-size: 1rem;
    }

    .ads {
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .search-page-title {
        font-size: 1.75rem;
    }

    .search-query {
        font-size: 1rem;
    }

    .search-field {
        font-size: 16px;
        padding: 14px 20px;
    }

    .author-hero {
        padding: 40px 0 30px;
    }

    .author-avatar {
        width: 120px;
        height: 120px;
    }

    .author-name {
        font-size: 1.8rem;
    }

    .author-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .post-card-content {
        padding: 20px;
    }

    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Hidden mobile search in header navigation */
@media (max-width: 768px) {
    .header-navigation-wrapper .modern-search-container {
        display: none;
    }
}

@media (min-width: 769px) {
    .header-titles-wrapper .modern-search-container {
        display: none;
    }
}

.post-meta-single-top .post-meta {
    justify-content: left;
}
/* Block Editor Compatibility */
.inedit-customized .wp-block-quote {
    border-left-width: 4px;
    padding-left: 2rem;
}

.inedit-customized .wp-block-pullquote blockquote {
    text-align: center;
}

.post-inner .entry-content > .wp-block-cover.alignwide:first-child,
.post-inner .entry-content > .wp-block-cover.alignfull:first-child {
    margin-top: 0;
}

/* Print Styles */
@media print {
    .inedit-customized .main-navigation,
    .inedit-customized .search-toggle,
    .inedit-customized .social-menu {
        display: none !important;
    }

    .inedit-customized .entry-content a {
        text-decoration: underline !important;
    }
}

/* Author Page Styles */
.author-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Author Hero Section */
.author-hero {
    position: relative;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    overflow: hidden;
}

.author-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.9;
}

.author-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.author-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.author-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.05);
}

.avatar-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.author-title {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 500;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    color: #FFFFFF;
}

/* Author Stats */
.author-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Links */
.author-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Posts Section */
.author-posts-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin: 0;
}

.post-count {
    color: #666;
    font-weight: 400;
}

.posts-filter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-dropdown {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-dropdown:focus {
    outline: none;
    border-color: #667eea;
}

/* Posts Grid */
.author-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.author-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.author-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.post-card-header {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-thumbnail {
    height: 100%;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.author-post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.author-post-card:hover .post-overlay {
    opacity: 1;
}

.read-time {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-card-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.post-date {
    color: #666;
}

.post-category a {
    background: #f0f8ff;
    color: #2980b9;
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-category a:hover {
    background: #2980b9;
    color: white;
}

.post-title {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #667eea;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.post-stats {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: #666;
}

.comments-count,
.views-count {
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #5a67d8;
    transform: translateX(4px);
}

/* No Posts State */
.no-posts {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

.no-posts-icon {
    margin-bottom: 30px;
    color: #ddd;
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #333;
}

.no-posts p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Pagination */
.author-pagination {
    margin-top: 50px;
    text-align: center;
}

.author-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.author-pagination a,
.author-pagination .current {
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.author-pagination a {
    background: white;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.author-pagination a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.author-pagination .current {
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .author-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}