/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 16 2025 | 03:31:13 */
/* ==========================================
   City Sports Media — Directory Styles [CSS]
   ==========================================
*/

/* Typeface */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
.csr-title, .csr-details, .csr-desc { font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }

/* ========== Section wrapper ==========
   tip: add class="csr-section" to each directory section wrapper
   and optionally also a specific tag like "csr-section-podcasts" */
.csr-section {
  /* kill surprise “air” from themes */
  margin: 0;
  padding: 0;
}

/* optional: a light section background — uncomment if you use one */
/* .csr-section { background: #f9fafb; } */

/* ========== List container ========== */
.csr-list {
  display: block;     /* ensures no theme grid gap bleeds in */
  margin: 0;
  padding: 0;
  /* just in case a theme sets gap on children via grid/flex */
  gap: 0;
}

/* ========== Items ========== */
.csr-list .csr-item {
  list-style: none;
  margin: 0;                    /* prevent extra vertical gaps */
  padding: 1.75rem 1rem;        /* base breathing room */
  background: transparent;      /* start with white stripe */
  position: relative;           /* for inner absolute logo anchor space, if needed */
}

/* zebra: stripe even rows only */
.csr-list .csr-item:nth-child(even) {
  background: rgba(0, 0, 0, .02);
}

/* subtle divider between items (no extra space) */
.csr-list .csr-item + .csr-item {
  border-top: 1px solid rgba(0,0,0,.06);
}

/* tighten inner heading/paragraph margins so the section stays compact */
.csr-list .csr-item h1,
.csr-list .csr-item h2,
.csr-list .csr-item h3,
.csr-list .csr-item p {
  margin-top: 0;
}
.csr-list .csr-item:last-child p:last-child {
  margin-bottom: 0;
}

/* bump the first & last item padding slightly so the block feels balanced */
.csr-list .csr-item:first-child  { padding-top: 1rem; }
.csr-list .csr-item:last-child   { padding-bottom: 1rem; }

/* ========== Item inner layout ========== */
.csr-item-inner {
  position: relative;
  padding-right: 180px; /* room for right-aligned logo on desktop/tablet */
}

/* Right-aligned logo (desktop/tablet) */
.csr-logo {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}
.csr-logo img {
  height: auto;
  width: auto;
  max-width: 160px;
  max-height: 120px;
  object-fit: contain;
}

/* ========== Text styles ========== */
.csr-title { 
  margin: 0 0 .25rem 0; 
  font-weight: 800; 
  line-height: 1.2;
}
.csr-title a { 
  color: inherit; 
  text-decoration: none; 
}
.csr-title a:hover { 
  text-decoration: underline; 
}

.csr-details { 
  font-size: 20px; 
  font-weight: 700; 
  margin: 0 0 .75rem 0; 
  line-height: 1.35;
}
.csr-desc { 
  font-size: 17px; 
  font-weight: 500; 
  line-height: 1.6; 
  margin: 0;
}

/* ========== Emoji / Twemoji alignment ========== */
img.emoji, img.twemoji {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  line-height: 1;
}

/* Make the tab list wrap cleanly with spacing between rows */
.kt-tabs-title-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;           /* space between buttons (row + column) */
  margin: 0 0 1rem 0;  /* add space below entire tab list */
  padding: 0;
  list-style: none;
}

/* Remove extra margins from list items */
.kt-tabs-title-list .kt-title-item {
  margin: 0 !important;
}

/* Style each tab button nicely */
.kt-tabs-title-list .kt-tab-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: .6rem .9rem;
  line-height: 1.2;
}


/* ========== Mobile tweaks ========== */

/* Tiny screens: shrink buttons slightly */
@media (max-width: 480px) {
  .kt-tabs-title-list .kt-tab-title {
    padding: .5rem .7rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  /* Hide logo and reclaim space */
  .csr-logo { display: none; }
  .csr-item-inner { padding-right: 0; }

  /* scale type a touch for small screens */
  .csr-details { font-size: 18px; }
  .csr-desc    { font-size: 16px; }
}

/* Adjust main content margins */
#primary {
  margin-left: 12%;
  margin-right: 12%;
  width: 76%; /* ensures content fills the new space */
}

/* Keep it responsive */
@media (max-width: 1024px) {
  #primary {
    margin-left: 6%;
    margin-right: 6%;
    width: 88%;
  }
}

@media (max-width: 768px) {
  #primary {
    margin-left: 4%;
    margin-right: 4%;
    width: 92%;
  }
}
/* Tighter padding inside cards on small screens */
@media (max-width: 480px) {
  .csr-item, 
  .csr-details {
    padding: 0.8rem 0.1rem;  /* was probably 1.5–2rem */
  }
  
  /* If cards are using extra margin internally, trim it */
  .csr-item p,
  .csr-details p {
    margin-bottom: 0.6rem;
  }
}

