/* ======================================== */
/*            PAGE EVENT BULAN INI    */
/* ======================================== */

:root {
  --dmi-green: #215a28;
  --dmi-green-dark: #163d1b;
  --black: #111111;
  --gray-light: #f8fafc;
  --gray-border: #e2e8f0;
  --text-soft: #64748b;
}

.ev-full-viewport {
  width: 100%;
  background-color: #ffffff;
  padding-top: 40px;
}

.ev-container {
  width: 92%;
  margin: 0 auto;
}

/* Grid 3 Columns */
.ev-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
}

/* Card Minimalist */
.ev-card {
  display: flex;
  background: #fff;
  border: 1px solid #11111110;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.158);
  border-radius: 12px;
  padding: 20px;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  height: 100%;
}

.ev-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.235);
}

.ev-img-box {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-light);
}

.ev-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ev-card:hover .ev-img-box img {
  transform: scale(1.1); /* Zoom halus saat card dihover */
}

.ev-date-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  color: var(--dmi-green);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ev-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 10px 0 10px;
}

.ev-item-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.3 * 2em);
}

.ev-item-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ev-item-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: auto;
  margin-bottom: 20px;
}

.ev-item-meta i {
  color: var(--dmi-green);
  margin-right: 5px;
}

.ev-btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--dmi-green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  margin-top: auto;
}

.ev-btn-primary:hover {
  background-color: #1bb92d;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transform: translateY(-2px);
}
.ev-btn-primary:active {
  background: #06420d;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);

}

/* ==========================================================================
   PAGINATION - Bootstrap 4 Style
   ========================================================================== */

.dmi-pagination-area {
    width: 100%;
    padding: 10px 0 100px 0;
    display: flex;
    justify-content: center;
    background: transparent;
    clear: both;
}

.dmi-pagination-container .pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1.5px solid rgba(0, 0, 0, 0.135);
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.dmi-pagination-container .pagination:hover {
    border-color: rgba(22, 81, 23, 0.596);
    transform: translateY(-5px);
}

.dmi-pagination-container .page-item {
    margin: 0;
}

.dmi-pagination-container .page-item .page-link {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    padding: 0;
    line-height: 1;
}

.dmi-pagination-container .page-item .page-link:hover {
    background: #f1f5f9;
    color: var(--dmi-green);
    transform: translateY(-2px);
}

.dmi-pagination-container .page-item.active .page-link {
    background: var(--dmi-green);
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(33, 90, 40, 0.4);
    transform: scale(1.05);
    z-index: 2;
}

.dmi-pagination-container .page-item.disabled .page-link {
    opacity: 0.3;
    cursor: not-allowed;
    background: transparent;
    color: #94a3b8;
    transform: none;
    box-shadow: none;
}

.dmi-pagination-container .page-item:first-child .page-link,
.dmi-pagination-container .page-item:last-child .page-link {
    background: #f8fafc;
    color: #94a3b8;
}

.dmi-pagination-container .page-item:first-child .page-link:hover,
.dmi-pagination-container .page-item:last-child .page-link:hover {
    background: var(--dmi-green-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.dmi-pagination-container .page-item:first-child.disabled .page-link,
.dmi-pagination-container .page-item:last-child.disabled .page-link {
    opacity: 0.3;
    cursor: not-allowed;
    background: #eee;
    color: #aaa;
    transform: none;
    box-shadow: none;
}

/* --- MOBILE CALIBRATION --- */
@media (max-width: 768px) {
    .dmi-pagination-container .pagination {
        padding: 6px;
        gap: 5px;
        border-radius: 16px;
    }

    .dmi-pagination-container .page-item .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .dmi-pagination-container .page-item:first-child .page-link,
    .dmi-pagination-container .page-item:last-child .page-link {
        min-width: 40px;
        height: 40px;
    }
}

/* ===============================
   RESPONSIVE EVENT GRID
   =============================== */

/* Tablet */
@media (max-width: 1024px) {
  .ev-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile large */
@media (max-width: 640px) {
  .ev-container {
    width: 95%;
  }


  .ev-main-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .ev-card {
    padding: 14px;
    border-radius: 10px;
  }

  .ev-card-body {
    padding: 14px 4px 0;
  }

  .ev-item-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .ev-item-text {
    font-size: 13px;
    -webkit-line-clamp: 2;
    margin-bottom: 14px;
  }

  .ev-item-meta {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }

  .ev-date-tag {
    font-size: 10px;
    padding: 4px 10px;
    top: 8px;
    left: 8px;
  }

  .ev-btn-primary {
    padding: 10px;
    font-size: 13px;
  }
}



/* ======================================== */
/*              PAGE KALENDER EVNT         */
/* ======================================== */

:root {
  --dmi-green: #215a28;
  --dmi-green-light: #f0f7f1;
  --soft-green: #e9f0ea;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-color: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
}

.cal-section {
  width: 100%;
  padding: clamp(20px, 2vw, 80px) 0;
  background-color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cal-container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header & Controls */
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  flex-wrap: wrap;
  gap: 24px;
}

.cal-label {
  color: var(--dmi-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  display: block;
}

.cal-main-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.cal-controls {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
}

/* Filter Pills */
.cal-filter-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.cal-pill {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--white);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.cal-pill.active, .cal-pill:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

/* Month Selector Refined */
.cal-month-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.cal-month-display {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  min-width: 220px;
  height: 40px;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
}

.cal-month-display i {
  color: var(--dmi-green);
  font-size: 14px;
}

.cal-current-month {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
}

.cal-nav-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.cal-nav-btn i {
  display: block;
  font-size: 13px;
  line-height: 1;
}

.cal-nav-btn:hover {
  background: var(--dmi-green);
  color: var(--white);
}

/* Grid Layout */
.cal-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.cal-main-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: clamp(15px, 3vw, 30px);
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.178);
  overflow: hidden;
}

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 13px;
  text-transform: uppercase;
}

.cal-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(5px, 1.5vw, 15px);
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 15px;
}

.cal-day:hover:not(.muted) {
  background: var(--dmi-green-light);
  color: var(--dmi-green);
  transform: scale(1.05);
}

.cal-day.active {
  background: var(--dmi-green);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(33, 90, 40, 0.2);
}

.cal-day.today {
  background: var(--dmi-green);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(33, 90, 40, 0.22);
}

.cal-day.today:hover:not(.muted) {
  background: var(--dmi-green);
  color: var(--white);
}

.cal-day.active:hover{
  background-color: #06420d00;
}

.cal-day.muted {
  color: #cbd5e1;
  cursor: default;
}

.event-dot {
  width: 7px;
  height: 7px;
  background: var(--dmi-green);
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  box-shadow: 0 0 0 3px rgba(33, 90, 40, 0.12);
}

.cal-day.today .event-dot {
  background: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.24);
}

.event-count-badge {
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 5px;
  border-radius: 999px;
  background: var(--dmi-green);
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  box-shadow: 0 0 0 3px rgba(33, 90, 40, 0.12);
}

.cal-day.today .event-count-badge {
  background: #ffc107;
  color: #1f2937;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.24);
}

/* Sidebar Event Info */
.cal-event-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 20px;
}

.sidebar-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.selected-event-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #00000025;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sel-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--dmi-green-light);
  color: var(--dmi-green);
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.sel-date {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.sel-info h4 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sel-meta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sel-meta i {
  color: var(--dmi-green);
}

.btn-sel-detail {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: var(--dmi-green);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-sel-detail:hover {
  background-color: #1bb92d;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transform: translateY(-2px);
}
.btn-sel-detail:active {
  background: #06420d;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transform: scale(0.9);
}

/* Animasi pada card sidebar saat berganti data */
.selected-event-card {
    transition: all 0.3s ease;
}

/* Memastikan kursor pointer pada tanggal yang bisa diklik */
.cal-day:not(.muted) {
    cursor: pointer;
}

/* Tambahan efek saat ditekan */
.cal-day:active {
    transform: scale(0.9);
}

/* Animasi Container Kalender */
#calendarGrid {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Class Animasi yang akan dipicu via JS */
.cal-slide-next {
    animation: slideNext 0.4s ease-out forwards;
}

.cal-slide-prev {
    animation: slidePrev 0.4s ease-out forwards;
}

@keyframes slideNext {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slidePrev {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.cal-slide-out-left {
    animation: slideOutLeft 0.25s ease-in forwards;
}

.cal-slide-out-right {
    animation: slideOutRight 0.25s ease-in forwards;
}

@keyframes slideOutLeft {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-30px); }
}

@keyframes slideOutRight {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(30px); }
}

/* Transisi Hover pada Sel Tanggal agar lebih smooth */
.cal-day {
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease !important;
}

/* Sidebar juga diberi sedikit transisi saat data berubah */
.selected-event-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cal-sidebar-enter {
    animation: sidebarEnter 0.35s ease-out forwards;
}

@keyframes sidebarEnter {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Optimization */
@media (max-width: 1150px) {
  .cal-layout-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 600px) {
  .cal-section{
    padding: 20px 0;
  }
  .cal-header {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
  }
  .cal-title-wrapper {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 8px;

  }
  .cal-label{
    display: flex;
    justify-content: center;
  }
  .cal-controls {
    width: 100%;
  }
  .cal-month-selector {
    width: 100%;
    justify-content: space-between;
  }
}

/* --- 1. Global Wrapper & Layout --- */
.single-event-page {
    padding: 60px 0 100px;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
}

.det-ev-main-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%; /* Memberikan ruang kosong (gutter) di kanan-kiri */
}

/* --- 2. Revisi Navigasi Kembali (Lebih Mudah Dilihat) --- */
.ev-nav-wrapper {
    margin-bottom: 25px;
}

.btn-back-dynamic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 20px;
    background: #215a28;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-back-dynamic i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-back-dynamic:hover {
    background: #3f9f4b;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(33, 90, 40, 0.15);
    transform: translateY(-2px);
}

.btn-back-dynamic:hover i {
    transform: translateX(-5px);
}

/* --- 3. Header & Typography --- */
.ev-header-area {
    margin-bottom: 45px;
}

.ev-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ev-category {
    color: #215a28;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ev-dot {
    width: 5px;
    height: 5px;
    background: #cbd5e1;
    border-radius: 50%;
}

.ev-status-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
}

.ev-main-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 0;
}

/* --- 4. Content Grid --- */
.ev-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

/* --- 5. Visual Content --- */
.ev-featured-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
    background: #f8fafc;
}

.ev-featured-image img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

.ev-featured-image:hover img {
    transform: scale(1.03);
}

/* --- 6. Article Typography --- */
.ev-sub-title {
    font-size: 1.6rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 25px;
}

.ev-paragraph-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.6;
    border-left: 4px solid #215a28;
    padding-left: 25px;
    margin-bottom: 30px;
}

.ev-description p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* --- 7. Sticky Info Card (Premium Detail) --- */
.ev-sticky-card {
    background: #fcfdfc;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid #0c19251d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    position: sticky;
    top: 40px;
}

.ev-card-header h4 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.header-line {
    width: 50px;
    height: 4px;
    background: #215a28;
    border-radius: 10px;
    margin-bottom: 40px;
}

.ev-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.ev-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #215a28;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.ev-text-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.primary-info {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.secondary-info {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}

.address-info {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.5;
    font-weight: 500;
}


/* --- 9. Responsive Mobile (REVISI) --- */
@media (max-width: 1100px) {
    .ev-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ev-sticky-card {
        position: static;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .single-event-page {
        padding: 40px 0 60px;
    }

    .det-ev-main-wrapper {
        padding: 0 20px; /* Lebih sempit di mobile agar konten maksimal */
    }

    .btn-back-dynamic {
        height: 36px;
        font-size: 0.8rem;
        border: 1px solid #e2e8f0;
    }

    .ev-main-headline {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }

    .ev-featured-image {
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .ev-paragraph-lead {
        font-size: 1.1rem;
        padding-left: 15px;
    }

    .ev-sticky-card {
        padding: 35px 20px;
        border-radius: 24px;
    }

    .ev-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .primary-info {
        font-size: 1.05rem;
    }
}
