/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Roboto Fallback";
  line-height: 1.5;
  color: #111827;
  background-color: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* ===== VARIABLES ===== */
:root {
  --primary: #a62c00;
  --primary-dark: #841309;
  --primary-light: #fff1e6;
  --secondary: #2c3e50;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-accent: color-mix(in oklab, #f5f5f5 50%, transparent);
  /* --border-light: #eaeef2; */
  --border-light: lab(86.08% -0.0000298023 0);
  --border-medium: #dde2e6;
  --dark: #171717;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --transition: all 0.2s ease;
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 24px;
  --font-3xl: 30px;
  --font-4xl: 36px;
}

/* ===== HEADER STYLES ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

/* Top bar */
.top-bar {
  background-color: var(--dark);
  color: white;
  font-size: var(--font-sm);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.location-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #e5e5e5;
}

.location-date span:first-child {
  letter-spacing: 0.3px;
}

.location-full {
  display: none;
}

.location-short {
  display: inline;
}

/* Top navigation */
.top-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.top-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: var(--transition);
  position: relative;
}

.top-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.top-nav a:hover {
  color: white;
}

.top-nav a:hover::after {
  width: 100%;
}

/* Main header */
.main-header {
  padding: 16px 0;
  background-color: white;
}

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

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  opacity: 0.9;
}

/* Mobile menu button */
.menu-button {
  display: block;
  padding: 8px;
  margin-left: -8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

/* Search button (mobile) */
.search-button {
  display: block;
  padding: 8px;
  margin-right: -8px;
  background: none;
  border: none;
  cursor: pointer;
}

.search-button svg {
  width: 20px;
  height: 20px;
}

/* Desktop search */
.desktop-search {
  display: none;
  align-items: center;
  gap: 16px;
}

.search-wrapper {
  position: relative;
}

.search-wrapper input {
  width: 300px;
  padding: 10px 16px 10px 42px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  background-color: var(--bg-secondary);
  transition: var(--transition);
}

.search-wrapper input:hover {
  border-color: #9ca3af;
  background-color: white;
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(166, 44, 0, 0.1);
}

.search-wrapper svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: var(--transition);
}

.search-wrapper input:focus + svg {
  color: var(--primary);
}

/* Subscribe button */
.subscribe-btn {
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(166, 44, 0, 0.2);
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(166, 44, 0, 0.3);
}

/* Desktop navigation */
.desktop-nav {
  display: none;
  border-top: 1px solid var(--border-light);
  background-color: white;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0 4px;
}

.desktop-nav a {
  display: block;
  padding: 14px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: var(--transition);
  position: relative;
}

.desktop-nav a:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
  width: 80%;
}

/* ===== BOTTOM BAR ===== */
.bottom-bar {
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
}

.bottom-bar .container {
  padding: 10px 16px;
}

.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 640px) {
  .bottom-links {
    gap: 32px;
    justify-content: flex-end;
  }
}

.bottom-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.bottom-link:hover {
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-1px);
}

.bottom-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Badges */
.badge {
  padding: 3px 8px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(166, 44, 0, 0.2);
}

.secondary-badge {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e2b37 100%);
}

/* Divider */
.divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-medium),
    transparent
  );
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 48px 0;
}

/* Page header */
.page-header {
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: var(--font-3xl);
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: var(--font-4xl);
  }
}

.page-header p {
  color: var(--text-muted);
  font-size: var(--font-base);
  font-weight: 400;
  max-width: 600px;
}

/* Search section */
.search-section {
  background-color: color-mix(
    in oklab,
    lab(96.52% -0.0000298023 0.0000119209) 50%,
    transparent
  );
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}

.search-section h2 {
  display: none;
}

/* ===== ARCHIVE FORM ===== */
.views_exposed_form_arc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: none !important;
}

.views_exposed_form_arc > .form-item {
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 0;
}

/* Form elements */
.form-item {
  margin-bottom: 0;
  border: none;
}

.form-type-select label,
.form-type-date label {
  display: block;
  font-size: var(--font-sm);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

select,
input[type="date"],
.form-type-textfield input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  background-color: white;
  transition: var(--transition);
  cursor: pointer;
  color: var(--text-primary);
  height: 40px;
}

@media (min-width: 1400px) {
  input[type="date"] {
    width: 352px;
  }
}

/* @media (min-width: 1024px) {
  input[type="date"] {
    width: 220px;
  }
} */

select:hover,
input[type="date"]:hover,
.form-type-textfield input:hover {
  border-color: #a62c00;
}

select:focus,
input[type="date"]:focus,
.form-type-textfield input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Min/Max date container */
.views_form_min_max {
  display: flex;
  flex-direction: row;
  gap: 8px;
  /* flex: 2 1 300px; */
}

.views_form_min_max fieldset {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.views_form_min_max fieldset .fieldset-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

.views_form_min_max .form-item {
  flex: 1 1 120px;
  min-width: 60px;
  margin-bottom: 0;
}

/* Submit button container */
.views_form_arc_submit {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.views_exposed_form_arc .form-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.views_exposed_form_arc .form-actions input[type="submit"] {
  width: 352px;
  min-width: 120px;
  padding: 10px 20px;
  height: 40px;
  white-space: nowrap;
  text-transform: capitalize;
}

/* Submit button */
input[type="submit"] {
  padding: 14px 24px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: var(--font-base);
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

input[type="submit"]:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}

/* ===== CONTENT GRID ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.content-grid div{
  position: relative;
}

.content-grid div .articles-header .views-exposed-form{
  position: absolute;
  right: 0;
}

.content-grid div .articles-header .views-exposed-form label{
  display: none;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 3fr;
  }
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 767px) {
  .sidebar {
    position: relative !important;
    top: 0 !important;
  }
}

.sidebar-section {
  background-color: var(--bg-accent);
  border-radius: var(--radius-lg);
  padding: 16px;
  font-size: 14px;
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000000;
  font-size: var(--font-base);
}

.sidebar-title svg {
  width: 16px;
  height: 16px;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  margin-bottom: 8px;
}

.sidebar-list a {
  display: block;
  padding: 8px 12px;
  font-size: var(--font-sm);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.sidebar-list a:hover {
  background-color: #e5e7eb;
}

@media (max-width: 640px) {
  .sidebar-list a {
    padding: 10px 12px;
  }
}

/* Ad placeholder */
.ad-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 250px;
  cursor: pointer;
  transition: transform 0.2s;
}

.ad-placeholder:hover {
  transform: scale(1.02);
}

.ad-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

/* Articles header */
.articles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.result-count {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.sort-select {
  padding: 8px 12px;
  font-size: var(--font-sm);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background-color: white;
}

/* Articles list */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-item {
  width: 100%;
}

.article-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 480px) {
  .article-link {
    flex-wrap: wrap;
  }
}

.article-image {
  position: relative;
  width: 128px;
  height: 96px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: var(--bg-accent);
}

@media (max-width: 480px) {
  .article-image {
    width: 100%;
    height: 160px;
    margin-bottom: 8px;
  }
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.article-link:hover .article-image img {
  transform: scale(1.05);
}

.article-date {
  border: none !important;
}

.article-date time {
  font-size: 12px;
  font-weight: 400;
  color: lab(36.2% 0 0.00000596046);
}

.article-content {
  display: flex;
  gap: 16px;
}

@media (max-width: 480px) {
  .article-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

.article-category {
  display: inline-block;
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.article-title {
  font-size: var(--font-base);
  font-weight: 600;
  line-height: 1.375;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link:hover .article-title {
  color: var(--primary);
}

.article-date {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

.article-divider {
  margin-bottom: 18px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 480px) {
  .article-divider {
    margin-top: -18px;
    margin-bottom: 24px;
    border: 0;
    border-top: 1px solid #e5e7eb;
  }
}

/* Pagination */
.pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.pagination-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 480px) {
  .pagination-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.page-btn {
  padding: 8px 16px;
  font-size: var(--font-sm);
  font-weight: 500;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background-color: white;
  cursor: pointer;
  transition: var(--transition);
}

@media (max-width: 480px) {
  .page-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.page-btn:hover {
  background-color: #f3f4f6;
}

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

/* Spacer */
.spacer {
  height: 100px;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--dark);
  color: white;
  min-height: 436px;
}

.footer-top {
  padding: 48px 16px 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer-about {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .footer-about {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .footer-about {
    grid-column: span 3;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    grid-column: span 1;
  }
}

.footer-tagline {
  display: none;
}

@media (min-width: 1024px) {
  .footer-tagline {
    display: block;
    font-size: var(--font-sm);
    color: #9ca3af;
    margin-top: -31px;
    margin-bottom: 16px;
  }
}

.footer-logo {
  background-image: url("/logo-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 250px;
  height: 48px;
}

@media (min-width: 640px) {
  .footer-logo {
    width: 300px;
  }
}

@media (min-width: 1024px) {
  .footer-logo {
    transform: translateX(-4px) translateY(16px);
  }
}

.footer-description {
  font-size: var(--font-sm);
  color: #9ca3af;
  max-width: 315px;
  margin-top: 16px;
  line-height: 20px;
}

@media (min-width: 1024px) {
  .footer-description {
    margin-top: 32px;
  }
}

.footer-address {
  font-size: var(--font-sm);
  color: #9ca3af;
  line-height: 16px;
}

@media (min-width: 1024px) {
  .footer-address {
    transform: translateY(7px);
  }
}

/* Social links */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .social-links {
    margin-top: 40px;
    transform: translateY(7px);
  }
}

.social-link {
  padding: 8px;
  background-color: #262626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: #404040;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* Footer columns */
.footer-column {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .footer-column.news-column {
    margin-left: 60px;
  }
  .footer-column.opinion-column {
    margin-left: 30px;
  }
  .footer-column.business-column {
    margin-left: 20px;
  }
}

@media (min-width: 1280px) {
  .footer-column.news-column {
    margin-left: 163px;
  }
  .footer-column.opinion-column {
    margin-left: 116px;
  }
  .footer-column.business-column {
    margin-left: 98px;
  }
  .footer-column.media-column {
    margin-left: 127px;
  }
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-sm);
  color: #9ca3af;
  white-space: nowrap;
}

.footer-list a {
  color: #9ca3af;
  text-decoration: none;
  line-height: 24px;
  transition: var(--transition);
}

.footer-list a:hover {
  color: white;
}

/* E-paper button */
.epaper-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 16px;
}

@media (min-width: 1024px) {
  .epaper-container {
    transform: translateY(21px);
  }
}

.epaper-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #901308;
  color: white;
  width: 117px;
  height: 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-base);
  transition: var(--transition);
}

.epaper-btn:hover {
  background-color: #7a1006;
}

.epaper-btn svg {
  width: 23px;
  height: 22px;
  fill: white;
}

.epaper-text {
  font-size: var(--font-sm);
  color: #9ca3af;
  padding-left: 4px;
}

.media-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.media-icon svg {
  width: 100%;
  height: 100%;
  fill: #9ca3af;
  transition: var(--transition);
}

.media-link:hover .media-icon svg {
  fill: white;
}

/* Footer bottom */
.footer-bottom {
  border-top: 2px solid #262626;
  transform: translateY(4px);
}

.footer-bottom .container {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  font-size: var(--font-sm);
  color: #9ca3af;
}

@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: var(--font-sm);
  color: #9ca3af;
}

.footer-copyright a {
  color: white;
  text-decoration: none;
}

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

.heart-icon {
  display: inline-block;
  width: 14px;
  height: 12px;
  margin: 0 4px;
}

.heart-icon svg {
  fill: #9ca3af;
}

@media (min-width: 768px) {
  .location-full {
    display: inline;
  }
  .location-short {
    display: none;
  }

  .top-nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .menu-button {
    display: none;
  }
  .search-button {
    display: none;
  }
  .desktop-search {
    display: flex;
  }
  .desktop-nav {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .content-grid {
    gap: 24px;
  }
}

@media (min-width: 769px) {
  .views_form_arc_submit {
    margin-top: 24px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .views_form_arc_submit {
    margin-top: 16px;
    width: 100%;
  }

  .views_form_arc_submit input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .views_form_arc_submit {
    margin-top: 12px;
    width: 100%;
  }

  .views_form_arc_submit input[type="submit"] {
    width: 100%;
  }

  .bottom-link {
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .views_exposed_form_arc {
    flex-direction: column;
    gap: 12px;
  }

  .views_exposed_form_arc > .form-item,
  .views_form_min_max,
  .views_exposed_form_arc .form-actions {
    width: 100%;
    flex: auto;
  }

  .views_form_min_max {
    flex-direction: column;
  }

  .views_form_min_max fieldset {
    flex-direction: column;
    width: 100%;
  }

  .views_form_min_max .form-item {
    width: 100%;
  }
}

@media (max-width: 962px) {
  .views_exposed_form_arc .form-actions input[type="submit"] {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .views_exposed_form_arc {
    gap: 12px;
  }

  .views_exposed_form_arc > .form-item {
    flex-basis: 160px;
    min-width: 140px;
  }

  .views_form_min_max {
    flex-basis: 250px;
  }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none;
}

.inline {
  display: inline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.archive_input_form {
  margin-bottom: 6px;
}

/* ===== ARCHIVE INPUT FORM WITH SVG ICON ===== */
.archive_input_form {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
}

.archive_input_form .form-item {
  position: relative;
  width: 100%;
}

.archive_input_form input[type="text"] {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: var(--font-sm);
  background-color: white;
  transition: var(--transition);
  height: 40px;
}

.archive_input_form input[type="text"]:hover {
  border-color: #a62c00;
}

.archive_input_form input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(166, 44, 0, 0.1);
}

.archive_input_form .form-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}

.archive_input_form .js-form-item-title label {
  display: none;
}

.archive_input_form input[type="text"]:focus + .form-item::before,
.archive_input_form input[type="text"]:focus ~ .form-item::before,
.archive_input_form .form-item:focus-within::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a62c00' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z' /%3E%3C/svg%3E");
}

@media (max-width: 480px) {
  .archive_input_form input[type="text"] {
    padding: 12px 16px 12px 42px;
    font-size: var(--font-base);
  }
}

.border-border ul li {
  width: 100%;
  padding: 8px 16px;
  cursor: pointer;
}

.border-border ul li:hover {
  color: lab(2.75381 0 0);
  background-color: lab(96.52% -0.0000298023 0.0000119209);
}

.border-border ul li a:hover {
  color: lab(2.75381 0 0);
}