.text-sm {
    font-size: .875rem;
    line-height: 0.8rem !important;
}

.prose :where(li):not(:where([class~=not-prose] *)) {
    margin-bottom:0px !important;
}

.notices-section {
    font-size: 13px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.ol-pretty li {
    margin-top:0px;
}

.customTable td:first-child {
    font-weight: bold;
}

.customHyperLink {
    color: rgb(14 165 233)
}

#leftMenu ol, #leftMenu  ul {
    line-height: 13px !important;
}

/* Base styles shared by both */
.guides {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

/* Three‑item layout */
.guides-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .guides-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Two‑item layout */
.guides-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .guides-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card styling (reuse from before) */
.guide-card {
  position: relative;
  background:  rgb(14, 165, 233);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: white;
  overflow: hidden;
}

.guide-card h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
}

.guide-card p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 18rem;
  color: rgba(255,255,255,0.9);
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
}

.watch-label {
  position: absolute;
  bottom: 10px;
  right: 30px;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.watch-label svg {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  fill: white;
}

.guide-card a.full-link {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}