/* CompaniesNearMe - Option 3: Bold Red Accent */
:root {
  --primary: #0f766e;          /* Teal from globe */
  --primary-dark: #0d5c56;
  --primary-light: #14b8a6;
  --accent: #dc2626;           /* Bold red from pin */
  --accent-hover: #b91c1c;
  --metal-blue: #1e3a5f;       /* Metallic navy-blue */
  --metal-blue-mid: #2563eb;
  --metal-blue-light: #3b82f6;
  --navy: #0f172a;
  --bg: #f1f5f9;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a:hover {
  color: var(--primary-dark);
}

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== HEADER ========== */
.header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
}

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

.btn-accent:hover {
  background: var(--accent-hover);
  color: white;
}

.btn-outline {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1.05rem;
}

/* ========== HERO + SEARCH ========== */
.hero {
  background: linear-gradient(135deg, #0f766e 0%, #0d5c56 100%);
  color: white;
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.search-box {
  background: white;
  border-radius: 12px;
  padding: 0.6rem;
  display: flex;
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.search-box input,
.search-box select {
  flex: 1;
  border: none;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  outline: none;
  color: var(--text);
}

.search-box input::placeholder {
  color: #94a3b8;
}

.search-box .btn {
  padding: 0.85rem 1.5rem;
  white-space: nowrap;
}

/* ========== CATEGORIES ========== */
.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.category-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========== CLAIM CTA ========== */
.claim-cta {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  color: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin: 1rem 0;
}

.claim-cta h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.claim-cta p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CARDS & TABLES ========== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.card h2, .card h3 {
  margin-bottom: 0.75rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.stat-card .label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.stat-card .value {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

/* Admin Layout */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--navy);
  color: white;
  padding: 1.5rem 1rem;
}

.sidebar .logo {
  color: white;
  margin-bottom: 2rem;
  display: block;
  font-weight: 700;
}

.sidebar a {
  display: block;
  color: #94a3b8;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.sidebar a:hover,
.sidebar a.active {
  background: rgba(255,255,255,0.08);
  color: white;
}

.main {
  padding: 2rem;
}

.page-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.page-subtitle {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* Listing cards */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.listing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.listing-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.listing-card .logo-area {
  height: 120px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--muted);
}

.listing-card .body {
  padding: 1.1rem;
}

.listing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-claimed {
  background: #d1fae5;
  color: #065f46;
}

.badge-unclaimed {
  background: #fef3c7;
  color: #92400e;
}

/* Footer */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer a {
  color: #94a3b8;
}

.footer a:hover {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ========== Side widgets: weather (left) + news (right) ========== */
.page-shell {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
.page-with-sides {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 1.25rem;
  align-items: start;
}
.page-center {
  min-width: 0;
}
.side-panel {
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}
.side-panel-inner {
  /* desktop: no chrome */
}
.side-panel-head {
  display: none;
}
.side-close {
  display: none;
}

/* Weather compact */
.weather-box {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #fff;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.22);
}
.weather-top { margin-bottom: 0.35rem; }
.weather-label {
  font-size: 0.75rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.weather-temp {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}
.weather-desc {
  font-size: 0.88rem;
  opacity: 0.95;
  margin-top: 0.15rem;
}
.weather-meta.compact {
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.95;
  margin: 0.5rem 0;
  text-align: left;
}
.weather-days {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.weather-day {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 0.35rem;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
  font-size: 0.72rem;
  text-align: left;
}
.weather-day .wd-label { font-weight: 700; }
.weather-day .wd-code { opacity: 0.9; min-height: 0; }
.weather-day .wd-range { font-weight: 600; white-space: nowrap; }
.weather-source {
  margin-top: 0.45rem;
  font-size: 0.65rem;
  opacity: 0.7;
}

/* News compact */
.news-box {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 0.85rem 0.9rem 1rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.news-header {
  margin-bottom: 0.5rem;
}
.news-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text, #0f172a);
}
.news-sub { display: none; }
.news-tabs {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.news-tab {
  border: 1px solid var(--border, #e2e8f0);
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.news-tab.active {
  background: #ecfdf5;
  border-color: #059669;
  color: #065f46;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.news-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 0.5rem 0.55rem;
  transition: border-color 0.15s, background 0.15s;
}
.news-item:hover {
  border-color: #059669;
  background: #f0fdf4;
}
.news-item-title {
  font-weight: 650;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-meta {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--muted, #64748b);
}
.news-loading {
  margin: 0;
  color: var(--muted, #64748b);
  font-size: 0.82rem;
}

/* Mobile FABs – hidden on desktop */
.side-fab {
  display: none;
}
.side-backdrop {
  display: none;
}

/* Tablet: collapse sides into drawers too */
@media (max-width: 1100px) {
  .page-with-sides {
    grid-template-columns: 1fr;
  }
  .side-panel {
    position: fixed;
    /* sit under sticky header, not behind it */
    top: var(--header-offset, 72px);
    bottom: 0;
    width: min(320px, 88vw);
    max-height: none;
    z-index: 95;
    overflow: auto;
    transition: transform 0.28s ease;
    background: #f8fafc;
    box-shadow: 0 0 40px rgba(0,0,0,0.18);
  }
  .side-weather {
    left: 0;
    transform: translateX(-105%);
  }
  .side-news {
    right: 0;
    left: auto;
    transform: translateX(105%);
  }
  .side-panel.open {
    transform: translateX(0);
  }
  .side-panel-inner {
    padding: 0.75rem;
    min-height: 100%;
  }
  .side-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    color: #0f172a;
  }
  .side-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 8px;
    background: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
  }
  .side-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: fixed;
    bottom: 1.25rem;
    z-index: 80;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    cursor: pointer;
  }
  /* Weather + News sit above the Instant Quote bottom bar */
  .side-fab-left,
  .side-fab-right {
    bottom: 4.6rem;
  }
  .side-fab-left {
    left: 1rem;
    background: linear-gradient(135deg, #0f766e, #0d9488);
  }
  .side-fab-right {
    right: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
  }
  .side-backdrop {
    display: block;
    position: fixed;
    top: var(--header-offset, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 90;
  }
  .side-backdrop[hidden] {
    display: none !important;
  }
  body.side-open {
    overflow: hidden;
  }
  .weather-days {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .side-fab .fab-label {
    /* keep short labels */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .search-box {
    flex-direction: column;
  }
  .nav {
    display: none;
  }
}


/* Shared powered-by footer – thin bar */
.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border, #e2e8f0);
  background: #fff;
}
.footer-powered {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.45rem 1rem;
  min-height: 0;
}
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
}
.powered-by:hover {
  color: #0f766e;
}
.powered-label {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.72rem;
}
.powered-logo {
  height: 16px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.powered-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: #475569;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}


/* Expand main column when side widgets are off (desktop stays full width) */
.page-with-sides.no-weather {
  grid-template-columns: minmax(0, 1fr) 260px;
}
.page-with-sides.no-news {
  grid-template-columns: 220px minmax(0, 1fr);
}
.page-with-sides.widgets-off,
.page-with-sides.no-weather.no-news {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.page-with-sides.widgets-off .side-panel,
.page-with-sides.no-weather .side-weather,
.page-with-sides.no-news .side-news {
  display: none !important;
}
@media (max-width: 1100px) {
  .page-with-sides.no-weather,
  .page-with-sides.no-news,
  .page-with-sides.widgets-off,
  .page-with-sides.no-weather.no-news {
    grid-template-columns: 1fr;
    max-width: none;
  }
}


/* Instant Roof Quote tab — desktop side + mobile bottom */
.side-fab-quote {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.35rem 0.95rem;
  /* Metallic blue base + red accent stripe feel */
  background: linear-gradient(165deg, #1e3a5f 0%, #2563eb 45%, #1d4ed8 100%);
  color: #fff !important;
  border: none;
  border-left: 4px solid #dc2626;
  border-radius: 14px 0 0 14px;
  box-shadow:
    -6px 6px 24px rgba(30, 58, 95, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  max-width: 4.1rem;
  min-height: 11rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.side-fab-quote .fab-icon {
  writing-mode: horizontal-tb;
  font-size: 1.55rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.side-fab-quote .fab-label-quote {
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: none;
  white-space: normal;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.side-fab-quote:hover {
  background: linear-gradient(165deg, #243b6b 0%, #3b82f6 50%, #dc2626 100%);
  color: #fff !important;
  transform: translateY(-50%) translateX(-3px);
  box-shadow:
    -8px 8px 28px rgba(30, 58, 95, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

@media (max-width: 1100px) {
  /* Mobile / tablet: bottom bar tab */
  .side-fab-quote {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    max-width: none;
    width: 100%;
    min-height: 0;
    border-radius: 0;
    border-left: none;
    border-top: 3px solid #dc2626;
    flex-direction: row;
    justify-content: center;
    padding: 0.95rem 1rem;
    background: linear-gradient(90deg, #1e3a5f 0%, #2563eb 55%, #1d4ed8 100%);
    box-shadow: 0 -6px 24px rgba(30, 58, 95, 0.4);
    z-index: 85;
  }
  .side-fab-quote .fab-label-quote {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.03em;
  }
  .side-fab-quote:hover {
    transform: none;
  }
  body {
    padding-bottom: 4.25rem; /* room for bottom quote tab */
  }
  /* Side drawers stop above the quote bar so close button stays reachable */
  .side-panel {
    bottom: 3.5rem;
  }
}


/* Page pop — cards, primary CTA, subtle depth */
.card {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.card:hover {
  box-shadow: 0 10px 28px rgba(30, 58, 95, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
}
.btn-primary {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 55%, #1e3a5f 140%);
  border: none;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.28);
  font-weight: 700;
}
.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}
.btn-outline {
  border: 2px solid var(--metal-blue-mid, #2563eb);
  color: var(--metal-blue, #1e3a5f);
  font-weight: 700;
}
.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent, #dc2626);
  border-color: var(--accent, #dc2626);
}
.page-hero-block h1 {
  letter-spacing: -0.02em;
}
.listing-card {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #dc2626, #2563eb) 1;
}
.header {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #0f766e 0%, #2563eb 50%, #dc2626 100%) 1;
}
