/*
Theme Name: SEA Artistic Freedom Radar
Theme URI: https://artsequator.com
Author: Arts Equator
Author URI: https://artsequator.com
Description: A custom theme for SEA Artistic Freedom Radar, designed to showcase research and documentation tracking.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arts-equator
Tags: custom-colors, custom-menu, featured-images, responsive-layout, blog

This theme is designed specifically for SEA Artistic Freedom Radar.
*/

/* Inter Font Face */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Italic';
    src: url('fonts/Inter-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Semi Bold';
    src: url('fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Semi Bold Italic';
    src: url('fonts/Inter-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Bold';
    src: url('fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Bold Italic';
    src: url('fonts/Inter-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary-red: #ff1d26;
    --primary-blue: #6270F2;
    --text-color: #000000;
    --background-color: #FFFFFF;
    --link-color: #6270F2;
    --header-font: 'Inter', Arial, sans-serif;
    --header-bold-font: 'Inter Bold', Arial, sans-serif;
    --subheader-font: 'Inter Semi Bold', Arial, sans-serif;
    --body-font: 'Inter', Arial, sans-serif;
    --body-font-bold: 'Inter Semi Bold', Arial Black, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font) !important;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    max-width: 1140px !important;
    margin: 0 auto;
}

a {
    color: var(--link-color);
}
a:hover {
    color: #FF0000;
}

#page {
    padding: 1rem 0 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#arts-equator-container {
    max-width: 1210px;
    margin: 0 auto;
}
#arts-equator-container .m-a-box {
    padding: 0 25px;
}
#arts-equator-container .m-a-box h5,#arts-equator-container .m-a-box h5 a {
    color: var(--primary-red) !important;
    text-decoration: none;
}
#arts-equator-container h1.entry-title {
    color: #000000;
    text-decoration: none;
    font-family: var(--subheader-font) !important;
    font-size: 2rem;
}
#arts-equator-container h2 {
    color: var(--primary-red) !important;
    text-decoration: none;
    font-family: var(--subheader-font) !important;
    font-size: 1.5rem;
}
#landingPageRandomReport h1, #landingPageRandomReport h3 {
    font-family: var(--header-bold-font) !important;
    font-weight: 600 !important;
}

/* --- HEADER & NAVIGATION CLEANUP --- */

/* Remove old mobile/secondary menu styles */
.secondary-navigation,
.mobile-navigation,
.mobile-nav-menu,
.desktop-only {
    display: none !important;
}


/* Make the first two main menu items all caps */
nav .nav-menu > li:nth-child(1) > a,
nav .nav-menu > li:nth-child(2) > a,
ul#primary-menu > li:nth-child(1) > a,
ul#primary-menu > li:nth-child(2) > a {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.elementor-page .entry-header {
    display: none !important;
} 

/* Header Layout */
.site-header {
    background: var(--background-color);
    padding: 2rem 0 2rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
}

.site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.site-logo-link {
    display: flex;
    align-items: center;
}

.site-logo-svg {
    height: 78px;
    width: auto;
    display: block;
}

.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-menu li {
    padding: 0;
    position: relative;
}

.nav-menu a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding-bottom: 0.5rem;
}

.nav-menu a:hover {
    color: var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

/* Add vertical separator between menu items */
.nav-menu li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.2em;
    background: var(--primary-red);
    margin: 0 1rem;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive: stack logo and menu on small screens */
@media (max-width: 900px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        position: relative;
    }
    .menu-toggle {
        display: block;
        position: static;
        top: auto;
        right: auto;
        margin: 0 0 0 1rem;
        z-index: 200;
    }
    .main-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        z-index: 99;
        padding: 1rem 0;
    }
    .main-navigation.toggled {
        display: flex;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-menu li {
        width: 100%;
        padding: 0;
    }
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
    .nav-menu li:not(:last-child)::after {
        display: none;
    }
    .site-logo-svg {
        height: 52px;
    }
}

/* Programme By Section */
.programme-by {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 0;
}

.programme-by span {
    font-size: 0.7rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.arts-equator-logo {
    display: flex;
    align-items: center;
}

.arts-equator-logo img {
    height: 35px;
    width: auto;
}

/* Screen reader text */
.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;
    width: 1px;
    word-wrap: normal !important;
}

/* Feature Section */
.feature-section {
    padding: 4rem 0;
    text-align: center;
    color: #000000;
}

.feature-title {
    text-align: center;
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-description {
    text-align: center;
    color: #314888;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}
.feature-button {
    text-align: center;
    --align-self: center;
}

/* Buttons */
.landingButton,
.wp-block-button__link {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 5px 70px;
    text-transform: uppercase;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: background-color 0.3s ease;
    width: fit-content;
}
.landingButton:hover {
    background-color: #000000;
}
.landingButton .elementor-button {
    font-family: var(--header-bold-font) !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    background-color: transparent !important;
}
h1.elementor-heading-title, h2.elementor-heading-title, h3.elementor-heading-title {
    font-family: var(--header-bold-font) !important;
    font-weight: 600 !important;
}
.splashButton {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-red);
    text-decoration: none;
    padding: 5px 70px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: background-color 0.3s ease;
    width: fit-content;
}
.splashButton:hover {
    background-color: #000000;
}
.splashButton .elementor-button {
    background-color: transparent !important;
}

/* Specific style for "VIEW REPORT" button */
.view-report-button {
    font-size: 1rem;
    letter-spacing: 0.05em;
    min-width: 180px;
    text-align: center;
}

/* Content Area */
.content-area {
    padding: 4rem 0;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

article {
    background: var(--background-color);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

article:hover .post-thumbnail img {
    transform: scale(1.05);
}

.entry-header {
    padding: 1.5rem 1.5rem 0;
}

.entry-title {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.entry-title a {
    color: var(--text-color);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--primary-red);
}

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

.entry-meta span:not(:last-child) {
    margin-right: 1rem;
}

.entry-content {
    padding: 0;
    color: #444;
}

.read-more {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Posts Navigation */
.posts-navigation {
    margin-top: 3rem;
}

.posts-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.posts-navigation a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.posts-navigation a:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #page {
        padding: 0.5rem 0;
    }
    .site-main {
        padding: 2rem 0;
    }

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

    .posts-grid {
        grid-template-columns: 1fr;
    }

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

    .entry-content {
        padding: 1rem;
    }

    .title-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-title a {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.8rem;
        padding-top: 0;
    }
}

/* Footer Styles */
.site-footer {
    padding: 20px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #333;
    font-size: 14px;
}

.footer-links {
    font-size: 14px;
}

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

.footer-links a:hover {
    color: #FF0000;
}

/* Add spacing between the vertical bars */
.footer-links .separator {
    margin: 0 10px;
    color: #333;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 10px;
    }
}

/* Content Layout */
.site-main {
    margin: 0 auto;
    padding: 0;
}
.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.post-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.elementor-widget-text-editor b, .elementor-widget-text-editor strong {
    font-family: var(--body-font-bold);
}

/* Remove any multi-column layouts */
.wp-block-columns {
    display: block !important;
}

.wp-block-column {
    width: 100% !important;
    margin: 0 !important;
}

/* Ensure images and other content spans full width */
.alignwide,
.alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
}

.alignfull img {
    width: 100%;
} 
h1 {
    font-size: 2.5rem;
}

/* Landing Page Footer Styles */
.landing-footer {
    padding: 2rem 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.landing-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-footer .footer-content {
    width: 100%;
}

.landing-footer .footer-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.landing-footer .logos-section {
    display: flex;
    gap: 4rem;
}

.landing-footer .project-by,
.landing-footer .funded-by,
.landing-footer .project-partners {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.landing-footer .footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.landing-footer .section-label {
    font-size: 0.65rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-align: left;
}

.landing-footer .partner-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.landing-footer .partner-logo {
    height: 42px;
    width: auto;
}

.landing-footer .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.landing-footer .social-icon {
    color: #ff1d26;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer .social-icon:hover {
    color: #cc0000;
}

.landing-footer .footer-copyright {
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
    text-align: right;
}

.landing-footer .footer-links {
    font-size: 0.9rem;
    white-space: nowrap;
    text-align: right;
}

.landing-footer .footer-links a {
    color: #ff1d26;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer .footer-links a:hover {
    color: #cc0000;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .landing-footer .footer-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .landing-footer .footer-info {
        width: 100%;
        align-items: center;
    }

    .landing-footer .footer-copyright,
    .landing-footer .footer-links {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .landing-footer .project-by,
    .landing-footer .funded-by,
    .landing-footer .project-partners {
        flex-direction: column;
        align-items: center;
    }

    .landing-footer .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .landing-footer .social-icons {
        justify-content: center;
    }
}

/* Random Report Post Styles */
.random-report-post {
    background: #fff;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.random-report-post h1 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.random-report-post p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.random-report-post .read-more {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.random-report-post .read-more:hover {
    background-color: #000000;
}

@media (max-width: 768px) {
    .random-report-post {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .random-report-post h1 {
        font-size: 1.75rem;
    }

    .random-report-post p {
        font-size: 1rem;
    }
}

/* Random Reports Container Styles */
.random-reports-container {
    margin: 2rem 0;
}

/* List Layout */
.random-reports-container.layout-list .random-report-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.random-reports-container.layout-list .random-report-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Grid Layout */
.random-reports-container.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.random-reports-container.layout-grid .random-report-item {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.random-reports-container.layout-grid .random-report-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Report Item Styles */
.random-report-item {
    background: #fff;
}

.report-thumbnail {
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.random-report-item:hover .report-thumbnail img {
    transform: scale(1.05);
}

.report-content {
    padding: 1.5rem;
}

.report-content h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.report-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.report-content .read-more {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.report-content .read-more:hover {
    background-color: #000000;
}

.archive-filter {
    width: 100%;
    padding: 12px 40px 12px 20px;
    border: 2px solid var(--primary-red, #ff1d26);
    border-radius: 25px;
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 0.7rem;
}
.archive-filter-split {
    width: 48%;
    padding: 12px 40px 12px 20px;
    border: 2px solid var(--primary-red, #ff1d26);
    border-radius: 25px;
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 0.7rem;
    margin-right: 2%;
    float: left;
}

.filterButton {
    width: 100%;
    padding: 12px 40px 12px 20px;
    background-color: var(--primary-red, #ff1d26);
    border-radius: 25px;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.pagination {
    padding-top: 15px;
    text-align: right;
    margin-bottom: 50px;
}
.pagination .page-numbers {
    padding: 7px 12px;
    color: #000000;
}
.pagination .page-numbers.current {
    background-color: var(--primary-red, #ff1d26);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .random-reports-container.layout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .report-content {
        padding: 1rem;
    }

    .report-content h2 {
        font-size: 1.25rem;
    }

    .report-thumbnail img {
        height: 180px;
    }
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 15px;
    cursor: pointer;
    position: relative;
    z-index: 100;
    margin-left: 1rem;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
    position: absolute;
    transition: transform 0.15s ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
    position: absolute;
    transition: transform 0.15s ease;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}
.menu-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .main-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        z-index: 99;
        padding: 1rem 0;
    }
    .main-navigation.toggled {
        display: flex;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-menu li {
        width: 100%;
        padding: 0;
    }
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
    .nav-menu li:not(:last-child)::after {
        display: none;
    }
    .header-container {
        position: relative;
    }
}

.site-header, .site-title, h1, h2, h3 {
    font-family: var(--header-bold-font) !important;
    font-weight: 700 !important;
}
.nav-menu, .main-navigation, .programme-by, .footer-content, .footer-links, .footer-copyright {
    font-family: var(--header-font) !important;
}
h4, h5, h6 {
    font-family: var(--subheader-font) !important;
}
.wpcf7 label {
    width: 100%;
}
.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-textarea {
    width: 100%;
    padding: 0.5rem;
}
.wpcf7 .wpcf7-submit {
    padding: 7px 30px;
    background-color: var(--primary-red, #ff1d26);
    color: #ffffff;
    border: none;
}
.comments-area {
    margin-top: 30px;
    max-width: 1140px;
}
.comments-area textarea#comment, .comments-area .ast-comment-formwrap input[type="text"] {
    width: 100%;
    border-radius: 0;
    vertical-align: middle;
    margin-bottom: 10px;
}
.comments-area .submit {
    padding: 8px 16px;
    border: 1px solid var(--primary-red, #ff1d26);
    border-radius: 20px;
    background: white;
    color: var(--primary-red, #ff1d26);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}