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

.calendar-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #edf4f7;
  padding: 6px 12px;
  border-radius: 99px;
}

.calendar-controls strong {
  font-size: 1rem;
  color: var(--ink);
  min-width: 100px;
  text-align: center;
}

.icon-button {
  padding: 0;
  width: 32px;
  height: 32px;
  min-height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
}

.calendar-container {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f7fbfd;
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 12px 0;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.85rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
  min-height: 70px;
  padding: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.calendar-day:nth-child(7n) {
  border-right: none;
}

.calendar-day:hover {
  background: #fdfdfd;
}

.calendar-day.is-empty {
  background: #fafcfd;
  color: #c8d8df;
  cursor: default;
}

.calendar-day.is-today .day-number {
  background: var(--blue);
  color: #ffffff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.day-number {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.calendar-event {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1.3;
  word-wrap: break-word;
  border-left: 3px solid var(--blue);
}

.calendar-event.type-saipar {
  background: var(--soft-green);
  color: #61750e;
  border-left-color: var(--green);
}

.calendar-event.is-registered {
  background: var(--soft-green);
  border-left-color: var(--green);
  color: #53670b;
}

.calendar-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Modal Styles */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 57, 78, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 1000;
  padding: clamp(10px, 3vw, 24px);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.modal-overlay.is-hidden {
  display: none !important;
  opacity: 0;
}

.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 32px);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(16, 57, 78, 0.2);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.modal-overlay.is-hidden .modal-content {
  transform: translateY(16px);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #173849;
}

.modal-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-body {
  padding: 24px;
  max-height: calc(100dvh - 112px);
  overflow: auto;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--blue);
}

.event-meta strong {
  font-weight: 800;
}

.event-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.event-location {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.event-links .button.is-danger {
  border-color: #d92d20;
  color: #b42318;
}

.modal-footer {
  padding: 20px 24px;
  background: #f7fbfd;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: stretch;
}

.modal-footer .button {
  width: 100%;
}

.video-modal-content {
  max-width: 800px;
}

.vote-modal-content {
  max-width: 860px;
}

.priority-response-modal-content {
  max-width: 720px;
}

.priority-response-modal-body {
  padding: clamp(24px, 5vw, 46px);
}

.priority-response-modal-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.priority-response-modal-meta strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.priority-response-modal-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.priority-response-modal-text {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.vote-modal-intro {
  margin-top: 0;
  color: var(--muted);
}

.vote-modal-content .campaign-topic-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-modal-content {
  max-width: 920px;
}

.settings-modal-body {
  max-height: calc(100dvh - 185px);
}

.tour-overlay {
  --tour-top: 0px;
  --tour-left: 0px;
  --tour-width: 0px;
  --tour-height: 0px;
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
}

.tour-mask {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  fill: rgba(16, 57, 78, 0.56);
  pointer-events: auto;
}

.tour-blur-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.tour-blur-pane {
  position: fixed;
  background: rgba(16, 57, 78, 0.01);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:
    top 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-blur-pane-top {
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--tour-top);
}

.tour-blur-pane-bottom {
  top: calc(var(--tour-top) + var(--tour-height));
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--tour-top) - var(--tour-height));
}

.tour-blur-pane-left {
  top: var(--tour-top);
  left: 0;
  width: var(--tour-left);
  height: var(--tour-height);
}

.tour-blur-pane-right {
  top: var(--tour-top);
  left: calc(var(--tour-left) + var(--tour-width));
  width: calc(100vw - var(--tour-left) - var(--tour-width));
  height: var(--tour-height);
}

.tour-spotlight {
  position: fixed;
  top: var(--tour-top);
  left: var(--tour-left);
  width: var(--tour-width);
  height: var(--tour-height);
  background: transparent;
  border: 3px solid #ffffff;
  border-radius: 12px;
  box-shadow:
    0 0 0 4px rgba(0, 155, 219, 0.38),
    0 18px 44px rgba(16, 57, 78, 0.24);
  pointer-events: none;
  transition:
    top 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-card {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(219, 230, 235, 0.96);
  border-top: 6px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(16, 57, 78, 0.26);
  pointer-events: auto;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-counter {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.3rem;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.welcome-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1390;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: auto;
}

.welcome-intro-blur {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 251, 254, 0.42), rgba(228, 243, 238, 0.38)),
    rgba(16, 57, 78, 0.1);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.welcome-intro-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  text-align: center;
  perspective: 1200px;
}

.welcome-intro-glass {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(50vh, 440px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.18)),
    linear-gradient(120deg, rgba(0, 155, 219, 0.14), rgba(255, 255, 255, 0.08) 46%, rgba(163, 189, 49, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    0 34px 90px rgba(16, 57, 78, 0.22);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  transform: translateY(18px) scale(0.985) rotateX(4deg);
  opacity: 0;
  animation: welcomeGlassIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.welcome-intro-glass::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.46), transparent 32%, rgba(255, 255, 255, 0.18) 52%, transparent 72%);
  opacity: 0.56;
  pointer-events: none;
}

.welcome-intro-glass::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 155, 219, 0.52), rgba(163, 189, 49, 0.52), transparent);
  pointer-events: none;
}

.welcome-intro-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: translateY(12px);
  animation: welcomeElementIn 0.86s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.welcome-intro-copy {
  position: relative;
  z-index: 2;
  width: min(88%, 980px);
  margin: 0 auto;
  text-align: center;
}

.welcome-intro-content p {
  position: relative;
  margin: 0;
  max-width: 930px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.9vw, 3.7rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.welcome-intro-mascot {
  position: absolute;
  z-index: -1;
  bottom: 86%;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(75vw, 620px);
  min-height: 0;
  opacity: 0;
  transform: translateX(-50%) translateY(18px) scale(0.98);
  filter: blur(10px);
  animation: welcomeMascotInTop 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
  pointer-events: none;
}

.welcome-intro-mascot video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.welcome-intro-word {
  display: inline-block;
  white-space: nowrap;
}

.welcome-intro-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: blur(14px);
  animation: appleWelcomeLetter 0.92s cubic-bezier(0.22, 1, 0.36, 1) var(--char-delay) forwards;
}

.welcome-intro-button {
  position: relative;
  margin-top: 34px;
  min-height: 52px;
  padding-inline: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(0, 155, 219, 0.95), rgba(34, 166, 196, 0.92)),
    var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 18px 40px rgba(0, 155, 219, 0.24);
  opacity: 0;
  transform: translateY(14px);
  animation: welcomeElementIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.welcome-intro-button:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 22px 48px rgba(0, 155, 219, 0.28);
}

.welcome-intro-overlay.is-leaving .welcome-intro-glass {
  animation: welcomeGlassOut 0.48s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes welcomeGlassIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes welcomeGlassOut {
  to {
    opacity: 0;
    transform: translateY(-14px) scale(0.99) rotateX(-3deg);
    filter: blur(10px);
  }
}

@keyframes welcomeElementIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes welcomeMascotIn {
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    filter: blur(0);
  }
}

@keyframes welcomeMascotInTop {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes welcomeMascotInMobile {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes appleWelcomeLetter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(14px);
  }

  58% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.tour-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.tour-actions > div {
  display: flex;
  gap: 8px;
}

.tour-actions .button {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.88rem;
}

.video-modal-body {
  padding: 0;
  background: #000;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 44px 24px;
  color: #ffffff;
  background: #1c2f39; /* Un tono ligeramente más oscuro y premium */
  font-size: 0.92rem;
  text-align: center;
}

.footer-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.footer-thank-you h5 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #a3bd31; /* El verde claro de ConArtritis */
  letter-spacing: 0.2px;
}

.footer-thank-you p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.footer-thank-you strong {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
  margin-top: 4px;
}

.footer-divider {
  width: 100%;
  max-width: 800px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 8px 0;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-info strong {
  color: #ffffff;
}

.footer-info a {
  color: #a3bd31;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-info a:hover {
  color: #c7de55;
  text-decoration: underline;
}

body.has-session .hero {
  display: none;
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 230px;
  }

  .panel {
    scroll-margin-top: 230px;
  }

  .topbar,
  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto 42px;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    overflow-x: visible;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .access-layout {
    grid-template-columns: 1fr;
  }

  .access-card {
    max-width: none;
  }

  .dashboard-grid,
  .resource-grid,
  .campaign-topic-list,
  .security-layout {
    grid-template-columns: 1fr;
  }

  .panel.wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .topbar {
    flex-direction: row;
    align-items: center;
  }

  .topbar nav {
    margin-left: auto;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .main-nav {
    margin: 0;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px;
  }

  .hero,
  .dashboard {
    padding-left: 14px;
    padding-right: 14px;
  }

  .access-card,
  .panel {
    padding: 18px;
  }

  .active-vote-notice {
    align-items: stretch;
    flex-direction: column;
    padding: 13px 14px;
  }

  .active-vote-notice .button {
    width: 100%;
    justify-content: center;
  }

  .tour-card {
    padding: 17px;
  }

  .welcome-intro-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 28px 22px;
  }

  .welcome-intro-copy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .welcome-intro-content p {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .welcome-intro-mascot {
    position: absolute;
    bottom: 92%;
    left: 50%;
    transform: translateX(-50%) translateY(18px) scale(0.98);
    width: min(90vw, 440px);
    margin: 0;
    min-height: auto;
    animation-name: welcomeMascotInTop;
  }

  .welcome-intro-mascot video {
    width: 100%;
  }

  .tour-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-actions > div,
  .tour-actions .button {
    width: 100%;
  }

  .notifications-header {
    flex-direction: column;
    gap: 12px;
  }

  .notification-toggle {
    width: 100%;
    justify-content: center;
  }

  .calendar-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .calendar-controls {
    align-self: stretch;
    justify-content: space-between;
  }

  .field-row,
  .discount {
    grid-template-columns: 1fr;
  }

  .access-layout {
    padding: 18px;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .member-card {
    width: 100%;
  }

  .card-face {
    gap: 8px;
    padding: 14px;
  }

  .verification-details div {
    grid-template-columns: 1fr;
  }

  .card-topline {
    gap: 7px;
    grid-template-columns: auto 1fr;
  }

  .card-topline img {
    width: 42px;
    padding: 4px;
  }

  .card-status {
    max-width: 94px;
    padding: 3px 6px;
    font-size: 0.66rem;
  }

  .card-photo {
    width: 56px;
  }

  .card-content {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
  }

  .member-card span,
  .member-card small,
  .member-card p {
    font-size: 0.74rem;
  }

  .member-card strong {
    margin: 3px 0;
    font-size: 1.08rem;
  }

  .card-meta {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

}

/* --- Blog Section --- */
.blog-panel {
  grid-column: 1 / -1; /* Make it span full width of the grid */
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 57, 78, 0.08);
  border-color: var(--soft-blue);
}

.blog-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f0f4f5;
  overflow: hidden;
}

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

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #607383;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content strong {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

