/*
Theme Name: Maine Fly Guide
Theme URI: https://github.com
Description: Rustic Modern theme for a Registered Maine Guide fly fishing site. Built from Concept 2 mockup. Use with Amelia for booking.
Author: Custom
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: maine-fly-guide
*/

/* ==========================================================================
   Google Fonts loaded in functions.php
   ========================================================================== */

:root {
  --color-bg: #f4f0ea;
  --color-paper: #faf8f4;
  --color-warm-dark: #3d3529;
  --color-bark: #5c4d3d;
  --color-rust: #8b6b4a;
  --color-moss: #4a5c4a;
  --color-river: #3d5a52;
  --color-muted: #7a6f62;
  --color-border: #d4cdc2;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  --max-width: 68rem;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(61, 53, 41, 0.06);
  --shadow-card: 0 4px 20px rgba(61, 53, 41, 0.08);
  /* Matches header content + padding (space-md + inner 10px + logo 2.75rem + inner 10px + space-md) */
  --header-height: calc(2 * var(--space-md) + 20px + 2.75rem);
  --color-required: #b52b2b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-warm-dark);
  background: var(--color-bg);
}

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

a {
  color: var(--color-river);
  text-decoration: none;
}

a:hover {
  color: var(--color-bark);
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--paper {
  background: var(--color-paper);
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
  margin: 0;
  border: none;
}

/* Header — always transparent (no solid fallback) */
.site-header {
  padding: var(--space-md) 0;
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.site-logo {
  display: block;
  flex-shrink: 0;
}

.site-logo img {
  height: 3.5rem;
  width: auto;
  display: block;
}

.site-logo-img {
  width: auto;
  height: 3.5rem;
  transform: translateZ(0);
}

/* Desktop-first: nav in flow, horizontal, hamburger hidden */
.site-nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #f4f0ea;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

.site-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-list a {
  display: inline-block;
  padding: 0.25em 0;
  min-height: 44px;
  line-height: 44px;
  color: rgba(244, 240, 234, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  touch-action: manipulation;
}

.site-nav-list a:hover {
  color: #f4f0ea;
  text-decoration: none;
}

/* Transparent header (all pages when over-hero class is present) */
.site-header.site-header--over-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Home: lighter, smoother gradient — readable at top, gentle fade over hero. */
  background: linear-gradient(
    to bottom,
    rgba(61, 53, 41, 0.52) 0%,
    rgba(61, 53, 41, 0.42) 25%,
    rgba(61, 53, 41, 0.28) 50%,
    rgba(61, 53, 41, 0.14) 75%,
    transparent 100%
  ) !important;
  border-bottom: none !important;
  padding: var(--space-md) 0;
}

/* On non-home pages, gradient ends at body background for a seamless transition */
body:not(.home) .site-header.site-header--over-hero {
  background: linear-gradient(
    to bottom,
    rgba(61, 53, 41, 0.52) 0%,
    rgba(61, 53, 41, 0.42) 25%,
    rgba(61, 53, 41, 0.28) 50%,
    rgba(61, 53, 41, 0.14) 75%,
    var(--color-bg) 100%
  ) !important;
}

.site-header.site-header--over-hero .site-logo {
  color: #f4f0ea;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Strong drop-shadow so logo reads over busy hero background */
.site-header.site-header--over-hero .site-logo img {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.9)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.site-header.site-header--over-hero .site-nav-list a {
  color: #f4f0ea;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.site-header.site-header--over-hero .site-nav-list a:hover {
  color: #fff;
}

/* Reserve space below transparent header on non-home pages */
body:not(.home) main {
  padding-top: var(--header-height);
}

/* Mobile: hamburger visible, nav as dropdown */
@media (max-width: 768px) {
  .site-nav-toggle {
    display: flex;
  }

  .site-header .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to bottom, rgba(61, 53, 41, 0.82) 0%, rgba(61, 53, 41, 0.76) 100%);
    padding: var(--space-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s;
  }

  body.nav-open .site-header .site-nav {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }

  .site-header .site-nav-list {
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 0;
  }

  .site-header .site-nav-list a {
    display: block;
    padding: var(--space-sm) 0;
    min-height: 44px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(244, 240, 234, 0.15);
  }

  .site-header .site-nav-list li:last-child a {
    border-bottom: none;
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--color-bark);
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 53, 41, 0.85) 0%, rgba(61, 53, 41, 0.4) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.hero-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-river);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #f4f0ea;
  max-width: 16ch;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(244, 240, 234, 0.9);
  max-width: 40ch;
  margin-bottom: var(--space-lg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-river);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.15);
  touch-action: manipulation;
}

.btn:hover {
  background: var(--color-bark);
  text-decoration: none;
  color: #fff;
}

.btn--river {
  background: var(--color-river);
}

.btn--river:hover {
  background: #2d4540;
  color: #fff;
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--color-warm-dark);
  margin: 0 0 var(--space-md);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-rust);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.about-image {
  aspect-ratio: 5/4;
  object-fit: cover;
  width: 100%;
}

.about-content .section-title {
  margin-top: 0;
}

.about-content p {
  margin-bottom: var(--space-md);
  color: var(--color-bark);
}

.about-content p:last-of-type {
  margin-bottom: var(--space-lg);
}

/* Trip cards */
.trips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .trips {
    grid-template-columns: 1fr;
  }
}

.trip-card {
  display: flex;
  flex-direction: column;
  background: var(--color-paper);
  padding: var(--space-xl);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.trip-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 var(--space-sm);
  color: var(--color-warm-dark);
}

.trip-card .meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.trip-card p {
  flex: 1;
  margin: 0 0 var(--space-md);
  color: var(--color-bark);
  font-size: 0.9375rem;
}

.trip-card .btn {
  margin-top: auto;
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-moss);
  color: #f4f0ea;
}

.cta-block .section-title {
  color: #f4f0ea;
  margin-bottom: var(--space-sm);
}

.cta-block p {
  color: rgba(244, 240, 234, 0.9);
  margin-bottom: var(--space-lg);
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .btn {
  background: var(--color-rust);
  color: #fff;
}

.cta-block .btn:hover {
  background: var(--color-bark);
  color: #fff;
}

/* Testimonials */
.testimonials .section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 52rem;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  padding: var(--space-lg);
  background: var(--color-paper);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-rust);
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-warm-dark);
}

.testimonial cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-muted);
  font-style: normal;
}

/* Info content (home and page) */
.info-content {
  max-width: 100%;
  margin: 0 auto;
}

.info-card {
  background: var(--color-paper);
  padding: var(--space-xl);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow);
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card__title,
.info-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 var(--space-md);
  color: var(--color-warm-dark);
}

.info-card--where-we-fish .info-card__title {
  margin-bottom: var(--space-lg);
}

.info-content ul {
  margin: 0 0 var(--space-sm);
  padding-left: 1.25rem;
  color: var(--color-bark);
}

.info-content p {
  margin: 0;
  color: var(--color-bark);
}

.info-license-note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.info-license-link {
  font-weight: 600;
}

/* Booking section */
.booking-page-section {
  padding: var(--space-2xl) 0;
}

.booking-page-section .section-title {
  margin-bottom: var(--space-md);
}

.booking-page-section > .container > .booking-intro {
  margin-bottom: var(--space-lg);
  color: var(--color-bark);
}

.booking-page-section > .container > .booking-tac {
  margin-bottom: var(--space-lg);
  color: var(--color-bark);
}

.amelia-booking-wrap {
  min-height: 400px;
}

/* Footer */
.site-footer {
  background: var(--color-warm-dark);
  color: rgba(244, 240, 234, 0.8);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 3px solid var(--color-rust);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #f4f0ea;
  margin-bottom: var(--space-sm);
}

.site-footer p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
}

.site-footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-rust);
  margin-bottom: var(--space-md);
}

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

.site-footer li {
  margin-bottom: var(--space-xs);
}

.site-footer a {
  color: rgba(244, 240, 234, 0.9);
}

.site-footer a:hover {
  color: #f4f0ea;
  text-decoration: none;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(244, 240, 234, 0.15);
  font-size: 0.8125rem;
  color: rgba(244, 240, 234, 0.5);
  text-align: center;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-legal-links {
  margin-top: var(--space-sm);
}

.footer-legal-links a {
  color: rgba(244, 240, 234, 0.7);
}

/* Page content (default page template) */
.page-content {
  padding: var(--space-2xl) 0;
}

.page-content .container {
  max-width: 44rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-warm-dark);
  margin: var(--space-xl) 0 var(--space-md);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content ul {
  color: var(--color-bark);
}

/* Book page template */
.template-book .booking-page-section {
  min-height: 60vh;
}

/* Contact page template (blank — use CF7 shortcode in content) */
.contact-page-section .contact-page-container {
  max-width: 44rem;
}

.contact-page-content {
  margin-top: var(--space-lg);
}

.contact-page-content p,
.contact-page-content label {
  color: var(--color-bark);
}

/* ==========================================================================
   Contact Form 7 — match site style
   ========================================================================== */

.contact-page-content .wpcf7 {
  font-family: var(--font-body);
}

.contact-page-content .wpcf7-form > p {
  margin: 0 0 var(--space-lg);
}

.contact-page-content .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}

/* Required field: red asterisk before label text */
.contact-page-content .wpcf7-form p:has(.wpcf7-validates-as-required) > label::before {
  content: '* ';
  color: var(--color-required);
  font-weight: 600;
}

.contact-page-content .wpcf7 label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-warm-dark);
  margin-bottom: var(--space-xs);
}

.contact-page-content .wpcf7-form-control-wrap {
  display: block;
  margin-top: var(--space-xs);
}

.contact-page-content .wpcf7 input[type="text"],
.contact-page-content .wpcf7 input[type="email"],
.contact-page-content .wpcf7 input[type="tel"],
.contact-page-content .wpcf7 textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem var(--space-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-warm-dark);
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-page-content .wpcf7 input[type="text"]:focus,
.contact-page-content .wpcf7 input[type="email"]:focus,
.contact-page-content .wpcf7 input[type="tel"]:focus,
.contact-page-content .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-rust);
  box-shadow: 0 0 0 3px rgba(139, 107, 74, 0.15);
}

.contact-page-content .wpcf7 input::placeholder,
.contact-page-content .wpcf7 textarea::placeholder {
  color: var(--color-muted);
}

.contact-page-content .wpcf7 textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-page-content .wpcf7 input.wpcf7-submit {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-rust);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.15);
  touch-action: manipulation;
  margin-top: var(--space-sm);
}

.contact-page-content .wpcf7 input.wpcf7-submit:hover {
  background: var(--color-bark);
}

.contact-page-content .wpcf7 input.wpcf7-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* CF7 response message */
.contact-page-content .wpcf7-response-output {
  margin: var(--space-md) 0 0;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  border: 1px solid var(--color-border);
}

.contact-page-content .wpcf7-mail-sent-ok .wpcf7-response-output {
  background: rgba(74, 92, 74, 0.1);
  border-color: var(--color-moss);
  color: var(--color-warm-dark);
}

.contact-page-content .wpcf7-validation-errors .wpcf7-response-output,
.contact-page-content .wpcf7-acceptance-missing .wpcf7-response-output {
  background: rgba(181, 43, 43, 0.08);
  border-color: var(--color-required);
  color: var(--color-warm-dark);
}

/* Spinner: hide or style to match */
.contact-page-content .wpcf7-spinner {
  margin-left: var(--space-sm);
  vertical-align: middle;
}

.contact-page-content .wpcf7 .hidden-fields-container {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Where We Fish: map image */
.where-we-fish-image-wrap {
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.where-we-fish-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Where We Fish: three equal columns */
.where-we-fish {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  width: 100%;
  min-width: 0;
  align-items: stretch;
}

.wwf-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--color-paper);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.wwf-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 var(--space-sm);
  color: var(--color-warm-dark);
}

.wwf-card .meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.wwf-card p {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--color-bark);
  font-size: 0.9375rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

/* Info section: responsive */
@media (max-width: 900px) {
  .where-we-fish {
    grid-template-columns: 1fr;
  }

  .wwf-card {
    padding: var(--space-md) var(--space-lg);
  }
}

@media (max-width: 640px) {
  .info-card {
    padding: var(--space-lg);
  }

  .info-card--where-we-fish .info-card__title {
    margin-bottom: var(--space-md);
  }

  .where-we-fish-image-wrap {
    margin-bottom: var(--space-md);
  }

  .wwf-card {
    padding: var(--space-md);
  }

  .wwf-card h3 {
    font-size: 1.125rem;
  }
}

.lessons-container {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
