/*
Theme Name: Winbuckz Theme
Author: Your Name
Description: A custom theme built from HTML, CSS, JS, and Bootstrap 5.
Version: 1.0
Text Domain: mycustomtheme
*/

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --border-color: #1a1a1a;
  --text-main: #1a1a1a;
  --text-muted: #555;
  --bg-grey: #e0e0e0;
  --brand-dark: #1b2945;
  --brand-light-gray: #e6e6e6;
  --black: #000;
  --white: #fff;
  --font-serif: "Playfair Display", serif;
}

/* ===========================
   GLOBAL / LAYOUT
   =========================== */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  overflow: hidden;
}

/* ===========================
   DIVIDERS (All Variants)
   =========================== */
.divider-container {
  padding: 0 2rem;
  margin-top: 10px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: var(--black);
  position: relative;
}

.divider-line::before,
.divider-line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background-color: var(--black);
}

.divider-line::before {
  left: 0;
}
.divider-line::after {
  right: 0;
}

.top-divider-container {
  display: flex;
  align-items: center;
  margin: 40px 0;
  padding: 0 15px;
}

.top-divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-color);
}

.top-divider-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.diamond {
  width: 4px;
  height: 4px;
  background-color: var(--black);
  transform: rotate(45deg);
}

.solid-line {
  flex-grow: 1;
  height: 1.5px;
  background-color: var(--black);
}

/* ===========================
   CATEGORY STRIP / MARQUEE
   =========================== */
.category-strip {
  background-color: var(--black);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
}

.marquee-animate {
  animation: scroll 20s linear infinite;
  justify-content: flex-start;
}

.marquee-animate:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.category-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 3vw;
  position: relative;
}

.category-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--black);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #6c757d;
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header,
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.section-title,
.page-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--black);
  margin: 0;
  line-height: 1;
}

.btn-view-all {
  background-color: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
  margin-bottom: 4px;
}

.btn-view-all:hover {
  opacity: 0.8;
  color: var(--white);
}

/* ===========================
   EDITORIAL BOX (Shared Card Frame)
   =========================== */
.editorial-card,
.editorial-box {
  border: 1.5px solid var(--black);
  padding: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.editorial-card {
  border-color: var(--border-color);
  margin-bottom: 24px;
}

/* Box Header: Circles + Dashed Line + Issue Number */
.card-top-bar,
.box-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.window-circles,
.circles {
  display: flex;
  gap: 4px;
}

.window-circles span,
.circle {
  width: 9px;
  height: 9px;
  border: 1.2px solid var(--black);
  border-radius: 50%;
  display: inline-block;
  background-color: transparent;
}

.window-circles span {
  width: 8px;
  height: 8px;
  border-color: var(--border-color);
}

.dashed-divider,
.dashed-line {
  flex-grow: 1;
  margin: 0 10px;
  height: 1px;
  background-image: linear-gradient(
    to right,
    var(--black) 40%,
    transparent 40%
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.dashed-divider {
  border-top: 1.5px dashed var(--border-color);
  margin: 0 12px;
  background: none;
}

.issue-number,
.issue-no {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===========================
   IMAGE WRAPPERS
   =========================== */
.card-img-wrapper,
.image-wrapper {
  border: 1.5px solid var(--black);
  width: 100%;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  aspect-ratio: 4 / 3;
}

.card-img-wrapper {
  border-color: var(--border-color);
}

.card-img-wrapper img,
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Specific aspect ratio overrides */
.center-col .card-img-wrapper {
  aspect-ratio: 16 / 10;
}

/* ===========================
   TYPOGRAPHY & META
   =========================== */
.category-tag,
.tag-text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.meta-info,
.meta-text {
  font-size: 0.8rem;
  color: var(--text-main);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.article-title,
.left-col .article-title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 8px 0 0;
}

.center-col .article-title {
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 4px 0 12px;
}

/* ===========================
   RIGHT COLUMN / SIDE ARTICLES
   =========================== */
.side-article {
  margin-bottom: 16px;
}

.side-article h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-divider {
  border-top: 1.5px solid var(--border-color);
  opacity: 1;
  margin: 16px 0;
}

/* ===========================
   GREY AD BOX
   =========================== */
.grey-ad-box {
  background-color: var(--bg-grey);
  width: 100%;
  height: 250px;
  margin-top: 24px;
}

/* ===========================
   SIDEBAR WIDGETS
   =========================== */
.sidebar-inner-box {
  border: 1.5px solid var(--black);
  padding: 24px 20px;
  background: var(--white);
  flex-grow: 1;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

/* Categories List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  font-size: 13px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1.5px solid #ccc;
}

.category-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Popular Posts */
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.pop-number {
  font-size: 36px;
  font-weight: 700;
  color: #888;
  line-height: 1;
}

.pop-content {
  flex-grow: 1;
}

.pop-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}

.pop-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pop-meta-stack .tag-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.pop-meta-stack .meta-text {
  font-size: 0.8rem;
}

/* ===========================
   HERO SECTION (Section 3)
   =========================== */
.hero-wrapper {
  border: 1.5px solid var(--black);
  width: 100%;
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background-color: #e9e9e9;
}

.hero-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-content {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--white);
  padding: 3.5rem 4rem;
  width: 48%;
  max-width: 650px;
  z-index: 5;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-meta {
  font-size: 12px;
  color: var(--black);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-load-more {
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  transition: opacity 0.2s;
}

.btn-load-more:hover {
  opacity: 0.8;
  color: var(--white);
}

/* ===========================
   PAGINATION
   =========================== */
.editorial-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 40px;
}

.page-box {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.page-box.active {
  background-color: var(--black);
  color: var(--white);
}

.page-box:hover:not(.active) {
  background-color: #f0f0f0;
  color: var(--black);
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.mb-grid {
  margin-bottom: 24px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .floating-content {
    padding: 2.5rem 3rem;
    width: 55%;
  }
}

@media (max-width: 991px) {
  .search-container {
    margin: 1rem 0;
    width: 100%;
  }
  .search-container input {
    width: 100%;
  }
  .btn-register {
    justify-content: center;
  }

  .center-col {
    order: -1;
  }

  .hero-wrapper {
    aspect-ratio: 16 / 9;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .floating-content {
    padding: 2rem;
    width: 65%;
  }

  .sidebar-wrapper {
    margin-top: 40px;
  }

  .section-header,
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .section-title,
  .page-title {
    font-size: 2.2rem;
  }

  .section-header {
    gap: 15px;
  }

  .hero-wrapper {
    aspect-ratio: 4 / 3;
  }
  .floating-content {
    width: 85%;
    padding: 1.5rem;
  }
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-wrapper {
    aspect-ratio: 1 / 1;
  }
  .floating-content {
    width: 95%;
  }
}

.editorial-pagination ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.editorial-pagination li a {
  padding: 8px 12px;
  border: 1px solid #000000;
  text-decoration: none;
}
.editorial-pagination li .current {
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
}

.page-numbers{
  color: black;
}

.tag-text a {
  text-decoration: none;
  color: #000;
}



/* blog  */
/* --- TOP HEADER AREA --- */
.article-header {
  text-align: center;
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 20px;
}
.breadcrumbs {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.main-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.15;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
}
.subtitle {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.meta-info {
  font-size: 13px;
  color: #333;
}
.meta-info strong {
  font-weight: 600;
  color: #000;
}

/* --- MAIN ARTICLE CONTENT (LEFT COLUMN) --- */
.featured-image-wrapper {
  width: 100%;
  margin-bottom: 40px;
}
/* Note: Unlike previous sections, this image does not have the black border/circles based on your image */
.featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-body h2,.article-body h3,.article-body h4,.article-body h5,.article-body h6 {
    font-family: "Playfair Display", serif;
      margin-top: 40px;
  margin-bottom: 20px;
    color: #000;
}

.article-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

/* --- SIDEBAR (RIGHT COLUMN) --- */
.sidebar-section {
  border-bottom: 1.5px solid #000;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.sidebar-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icons svg {
  width: 16px;
  height: 16px;
  fill: #000;
  transition: opacity 0.2s;
}
.social-icons a:hover svg {
  opacity: 0.6;
}

/* Author Box */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.author-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}
.author-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin: 0 0 2px 0;
  color: #000;
}
.author-role {
  font-size: 11px;
  color: #666;
  margin-bottom: 10px;
}

/* Recent Posts */
.recent-post-item {
  margin-bottom: 24px;
}
.recent-post-item:last-child {
  margin-bottom: 0;
}
.recent-post-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin-bottom: 8px;
}
.recent-post-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}


.recent-post-meta a {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: grey;
}


.tag-text{
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 500;
}
.meta-text {
  font-size: 10px;
  color: #000;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
  .sidebar-wrapper {
    margin-top: 50px;
  }
  .main-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }
  .article-body h2 {
    font-size: 1.8rem;
  }
}

/* --- HEADER SECTION --- */
.section-header {
  margin-bottom: 10px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #000;
  margin: 0;
  line-height: 1;
}

/* --- DIVIDER LINE --- */
.top-divider-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.diamond {
  width: 4px;
  height: 4px;
  background-color: #000;
  transform: rotate(45deg);
}
.solid-line {
  flex-grow: 1;
  height: 1.5px;
  background-color: #000;
}

/* --- EDITORIAL CARD STYLES --- */
.editorial-box {
  border: 1.5px solid #000;
  padding: 8px;
  background: #fff;

  display: flex;
  flex-direction: column;
}

/* Top Bar: Circles & Dots */
.box-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.circles {
  display: flex;
  gap: 4px;
}
.circle {
  width: 9px;
  height: 9px;
  border: 1.2px solid #000;
  border-radius: 50%;
  background-color: transparent;
}
.dashed-line {
  flex-grow: 1;
  margin: 0 10px;
  height: 1px;
  background-image: linear-gradient(to right, #000 40%, transparent 40%);
  background-size: 5px 1px;
  background-repeat: repeat-x;
}
.issue-no {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Inner Image Container */
.image-wrapper {
  border: 1.5px solid #000;
  width: 100%;
  aspect-ratio: 4 / 3.2; /* Matches the slightly boxy ratio of your image */
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Typography Inside Card */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.tag-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.meta-text {
  font-size: 0.8rem;
  color: #000;
}
.article-title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 8px;
  margin-bottom: 0;
}

.mb-grid {
  margin-bottom: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}


/* logo  */
.navbar-brand img{
  width: 122px;
}


/* search  */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(15, 5, 20, 0.88); */
    background: white;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
}

.search-overlay__close {
    position: fixed;
    top: 20px;
    right: 28px;
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 0;
    stroke:black;
}

.search-overlay__close svg{
  stroke:black;
}

.search-overlay__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.search-overlay__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 80px 24px 40px;
    margin: 0 auto;
}

.search-overlay__input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.search-overlay__input {
    width: 100%;
    padding: 18px 55px 18px 24px;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    background: #ffffff;
    border: 2px solid black;
    /* border-radius: 50px; */
    border-radius: 0px;
    outline: none;
    box-shadow: 0 8px 32px rgb(220 202 202 / 30%);
    font-family: inherit;
    -webkit-appearance: none;
}

.search-overlay__input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-overlay__input:focus {
    border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 40px rgba(186, 185, 185, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.08);
    border: 1px solid black;
}

.search-overlay__spinner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.search-overlay__results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.search-result-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid black;
    border-radius: 0px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    cursor: pointer;
    overflow: hidden;
    animation: cardFadeIn 0.4s ease forwards;
    opacity: 0;
    transform: translateY(12px);
}

.search-result-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(145, 144, 144, 0.3);
    color: #ffffff;
    text-decoration: none;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-card__thumb {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 0px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.search-result-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* .search-result-card:hover .search-result-card__thumb img {
    transform: scale(1.05);
} */

.search-result-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-result-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000000;
}

.search-result-card__excerpt {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    color: rgb(30 24 24 / 79%);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-overlay__no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-overlay__no-results p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0;
}

body.search-overlay-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .search-overlay__content { padding: 70px 20px 30px; }
    .search-overlay__input { font-size: 16px; padding: 16px 50px 16px 20px; }
    .search-result-card__thumb { width: 85px; height: 85px; }
    .search-result-card__title { font-size: 14px; }
    .search-result-card__excerpt { font-size: 12px; }
}

@media (max-width: 600px) {
    .search-overlay__close { top: 14px; right: 16px; }
    .search-overlay__close svg { width: 26px; height: 26px;stroke:black; }
    .search-overlay__content { padding: 60px 14px 24px; }
    .search-overlay__input { font-size: 15px; padding: 14px 45px 14px 18px;border:1px solid rgb(39, 38, 38); }
    .search-overlay__results { grid-template-columns: 1fr; gap: 12px; }
    .search-result-card { padding: 14px; gap: 12px; border-radius: 0px;border:1px solid black; }
    .search-result-card__thumb { width: 75px; height: 75px; border-radius: 0px; }
    .search-result-card__title { font-size: 14px; }
    .search-result-card__excerpt { font-size: 12px; }
}