/*
Theme Name:   EMRCNDMGLBLGTHM
Theme URI:    emircandumoglu.com/EMRCNDMGLBLGTHM
Author:       Emircan Dumoğlu
Author URI:   emircandumoglu.com
Description:  Basit ve kullanışlı, kişiye özel blog teması
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Tags:         blog, clean, responsive, minimal
*/
/* ================================
   1) RESET
   ================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   2) TEMEL TİPOGRAFİ / RENKLER
   ================================ */

:root {
  --accent: #111827;              /* Koyu lacivert / siyaha yakın */
  --accent-soft: rgba(17, 24, 39, 0.06);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f4f6; /* çok açık gri */
  color: #111827;
}

a:hover {
  color: inherit;
}

/* Genel layout */

.site-wrapper {
  min-height: 100vh;
}

/* ================================
   3) SOL SİDEBAR
   ================================ */

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 320px;
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
  z-index: 100;
}

.sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

/* Logo + başlık */

.sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  overflow: hidden;
}

.logo-circle img,
.logo-circle .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
}

.sidebar-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: none; /* burada uppercase değil */
}

.site-title:hover {
  opacity: 0.8;
}

.site-description {
  font-size: 0.9rem;
  text-transform: none;
  font-weight: 400;
  color: #9ca3af;
}

/* Menü */

.sidebar-nav {
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.sidebar-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-menu li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #4b5563;
  border-radius: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;

  position: relative; /* Çizgi için gerekli */
  padding-left: 16px; /* Çizgiye yer açalım */
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}
/* Sol highlight çizgisi */
.sidebar-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  border-radius: 999px;
  background-color: #111827;
  opacity: 0;
  transition:
    height 0.22s ease,
    opacity 0.18s ease;
}

.sidebar-menu li.current-menu-item > a,
.sidebar-menu li a:hover {
  background-color: rgba(17, 24, 39, 0.04);
  color: #111827;
  border-radius: 8px;
  padding-left: 20px; /* hover/aktifken biraz daha içeri girsin */
}

/* Hover + aktif için çizgi boyutu */
.sidebar-menu li.current-menu-item > a::before,
.sidebar-menu li a:hover::before {
  height: 65%;
  opacity: 1;
}

/* BLOG dropdown (etiketler) */

.has-blog-dropdown {
  position: relative;
}

.blog-tags-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.4rem;
  padding: 0.45rem 0.4rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  min-width: 190px;
  z-index: 50;
}
.has-blog-dropdown.is-open .blog-tags-dropdown {
  display: block;
}


.has-blog-dropdown:hover .blog-tags-dropdown {
  display: block;
}

.blog-tags-list {
  list-style: none;
}

.blog-tags-item + .blog-tags-item {
  margin-top: 0.15rem;
}

.blog-tags-item a {
  display: block;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  color: #4b5563;
  background-color: #f9fafb;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}


.blog-tags-item a:hover {
  background-color: #111827;
  color: #f9fafb;
  transform: translateY(-1px);
}

/* Sosyal ikonlar */

.sidebar-footer {
  margin-top: auto;
}

.sidebar-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.sidebar-socials img {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.08);
}

.social-link:hover img {
  filter: drop-shadow(0 0 4px var(--accent));
  transform: scale(1.05);
}

.sidebar-copy {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ================================
   4) SAĞ İÇERİK (GENEL)
   ================================ */

.site-main {
  margin-left: 320px;
  padding: 3rem 4rem;
}

/* ================================
   5) BLOG KARTLARI (ANA SAYFA)
   ================================ */

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.post-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.post-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.post-card-thumb img,
.post-card-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Öne çıkarılmış görsel yoksa */

.post-card-placeholder {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

/* Sticky (sabitlenmiş) kart */

.post-card--featured {
  border: 1.5px solid rgba(17, 24, 39, 0.35);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.post-card-featured-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 2;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.5);
  color: rgba(17, 24, 39, 0.9);
}

/* Kart içi */

.post-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.post-card-title a:hover {
  color: var(--accent);
}

/* Etiket chip'leri (kart içi) */

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.4rem 0 0.3rem;
}

.post-card-tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  background-color: #f9fafb;
  color: #4b5563;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.post-card-tag:hover {
  background-color: #111827;
  color: #f9fafb;
  border-color: #111827;
  transform: translateY(-1px);
}

.post-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
}

.post-card-meta {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Sayfalama */

.post-pagination {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  text-align: center;
}

.post-pagination .page-numbers {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background-color: #e5e7eb;
  color: #374151;
}

.post-pagination .page-numbers.current,
.post-pagination .page-numbers:hover {
  background-color: #111827;
  color: #f9fafb;
}

/* ================================
   6) HAKKIMDA SAYFASI (about.php)
   ================================ */

.about-page {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 2.2rem 2.5rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.about-hero {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-hero-media {
  flex: 0 0 auto;
}

.about-hero-avatar {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.18);
}

.about-hero-avatar--placeholder {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.about-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 40rem;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.about-meta-separator {
  opacity: 0.5;
}

.about-body {
  margin-top: 1.6rem;
}

.about-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
}

.about-content p + p {
  margin-top: 0.9rem;
}

.about-content h2,
.about-content h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-content ul {
  margin: 0.6rem 0 0.8rem 1.2rem;
  list-style: disc;
}

.about-content li + li {
  margin-top: 0.2rem;
}

/* ================================
   7) SINGLE POST (single.php)
   ================================ */

.single-page {
  max-width: 960px;
  margin: 0 auto;
}

.single-article {
  background-color: #ffffff;
  border-radius: 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 2.2rem 2.5rem 2.4rem;
}

/* Başlık + hero */

.single-header {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.single-hero {
  border-radius: 1rem;
  overflow: hidden;
}

.single-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.single-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Meta */

.single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.single-meta-separator {
  opacity: 0.5;
}

.single-meta-author {
  font-weight: 500;
}

/* Lead paragraf */

.single-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Etiket chip'leri */

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.single-tag-chip {
  font-size: 0.8rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  background-color: #f9fafb;
  color: #4b5563;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.single-tag-chip:hover {
  background-color: #111827;
  color: #f9fafb;
  border-color: #111827;
  transform: translateY(-1px);
}

/* İçerik tipografisi */

.single-content {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #374151;
}

.single-content p + p {
  margin-top: 0.9rem;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.single-content ul,
.single-content ol {
  margin: 0.6rem 0 0.8rem 1.3rem;
}

.single-content li + li {
  margin-top: 0.2rem;
}

/* Çok sayfalı yazılar */

.single-pages {
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* Yazar kutusu */

.single-footer {
  margin-top: 2rem;
}

.single-author-box {
  margin-top: 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background-color: #f9fafb;
  border: 1px solid rgba(17, 24, 39, 0.06);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.single-author-avatar img {
  border-radius: 999px;
  width: 72px;
  height: 72px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}

.single-author-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.single-author-name-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.single-author-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.single-author-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.single-author-name:hover {
  text-decoration: underline;
}

.single-author-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4b5563;
}

.single-author-bio--placeholder {
  color: #9ca3af;
}

/* Önceki / sonraki yazı navigation */

.single-post-nav {
  margin-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.single-post-nav a {
  color: #111827;
  padding: 0.4rem 0.6rem;
  border-radius: 0.6rem;
  background-color: #f3f4f6;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.single-post-nav a:hover {
  background-color: #111827;
  color: #f9fafb;
  transform: translateY(-1px);
}

/* ================================
   8) YORUMLAR (minimal)
   ================================ */

.single-comments {
  margin-top: 2rem;
}

.single-comments-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* Yorum listesi */

.single-comments ol.commentlist,
.single-comments ol.comment-list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.single-comments ol.commentlist > li,
.single-comments ol.comment-list > li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.single-comments .comment-meta {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.single-comments .comment-author {
  font-weight: 500;
  color: #374151;
}

.single-comments .comment-content {
  font-size: 0.9rem;
  color: #374151;
}

.single-comments .comment-content p + p {
  margin-top: 0.4rem;
}

/* Yorum formu */

.single-comments #respond {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid #e5e7eb;
}

.single-comments #reply-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.single-comments form p {
  margin-bottom: 0.6rem;
}

.single-comments input[type="text"],
.single-comments textarea {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.88rem;
  font-family: inherit;
  background-color: #f9fafb;
}

.single-comments textarea {
  min-height: 130px;
}

.single-comments input[type="submit"] {
  margin-top: 0.3rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #f9fafb;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.single-comments input[type="submit"]:hover {
  background-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}
/* === ARŞİV BAŞLIĞI (kategori / etiket / yazar / tarih) === */

.archive-header {
  margin-bottom: 1.5rem;
}

.archive-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.archive-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 40rem;
}
.post-card-fallback {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    border-radius: 0.9rem 0.9rem 0 0;
    background: #f3f4f6;
}
/* Mobil topbar, default olarak gizli (sadece mobile’da açıyoruz) */
.mobile-topbar {
  display: none;
}
/* ============================================================
   📱 MOBİL RESPONSIVE (C MODE — Sticky Topbar + Slide Sidebar)
   ============================================================ */
/* ================================
   DESKTOP (1025px+) – Sidebar sabit
   ================================ */
@media (min-width: 1025px) {
  .mobile-topbar,
  .mobile-menu-toggle {
    display: none !important;
  }

  .site-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    border-right: 1px solid #e5e7eb;
  }

  .site-main {
    margin-left: 280px;
    padding: 2.5rem 3rem;
  }
}

/* ===============================
   TABLET (769–1024px)
   =============================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .mobile-topbar,
  .mobile-menu-toggle {
    display: none !important;
  }

  .site-sidebar {
    width: 240px;
  }

  .site-main {
    margin-left: 240px;
    padding: 2rem 2rem;
  }
}

/* ===============================
   MOBILE (≤ 768px) – Hamburger + Slide Menu
   =============================== */
@media (max-width: 768px) {

  /* Üst bara logo + hamburger */
  .mobile-topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 3000;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .mobile-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Hamburger */
  .mobile-menu-toggle {
    display: flex;              /* mobilde görünsün */
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 4000;
  }

  /* Çizgiler (3 bar) */
  .mobile-menu-toggle .bar {
    position: absolute;
    width: 18px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle .bar:nth-child(1) {
    transform: translateY(-5px);
  }

  .mobile-menu-toggle .bar:nth-child(2) {
    transform: translateY(0);
  }

  .mobile-menu-toggle .bar:nth-child(3) {
    transform: translateY(5px);
  }

  /* X animasyonu */
  .mobile-menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .mobile-menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  /* Slide Sidebar */
  .site-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    padding: 70px 1rem 1rem;
    transition: left .28s ease;
    overflow-y: auto;
    z-index: 3500;
  }

  .site-sidebar.open {
    left: 0;
  }

  .sidebar-brand {
    display: none; /* mobilde üst logoya gerek yok */
  }

  .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }

  .sidebar-footer {
    margin-top: auto;
    padding-bottom: 1rem;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    z-index: 2500;
  }
  .menu-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* İçerik aşağı insin, sidebar yer kaplamasın */
  .site-main {
    margin-left: 0;
    margin-top: 70px;
    padding: 1.2rem 1rem;
  }

  /* Grid tek sütun */
  .post-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
