/* HERO */
.saints-hero {
    background: linear-gradient(135deg,#f6dedd,#fcf8f6);
    padding: 80px 0;
    text-align:center;
  }
  
  .saints-hero h1 {
    font-size: 70px;
    font-weight: 800;
    font-family: "Cormorant Garamond", serif;
  }
  
  .saints-hero p {
    color: var(--text-light);
  }
  
  /* SAINT OF DAY */
  .saint-day {
    padding: 60px 0;
  }
  
  .saint-day-card {
    display:flex;
    gap:20px;
    align-items:center;
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow: var(--shadow-sm);
  }
  
  .saint-day-icon {
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f3ddd5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--accent);
  }
  
  /* FILTERS */
  .filters {
    padding:40px 0;
  }
  
  .filters-grid {
    display:grid;
    grid-template-columns:1fr 160px 160px;
    gap:16px;
  }
  
  .filters input,
  .filters select {
    padding:12px;
    border-radius:10px;
    border:1px solid var(--border);
  }
  
  /* GRID */
  .grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding-bottom:60px;
  }
  
  .card {
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow: var(--shadow-sm);
    transition:0.3s;
  }
  
  .card:hover {
    transform:translateY(-4px);
  }
  
  .card h4 {
    margin:8px 0;
  }
  
  .card small {
    color:var(--text-light);
  }
  
  /* BUTTON */
  .btn-primary {
    display:inline-block;
    margin-top:10px;
    padding:10px 16px;
    background:var(--accent);
    color:#fff;
    border-radius:999px;
  }

  .empty-month-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  
  .empty-month-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3ddd5;
    color: var(--accent);
    font-size: 1.1rem;
  }
  
  .empty-month-card h3 {
    margin: 0 0 8px;
  }
  
  .empty-month-card p {
    margin: 0;
    color: var(--text-light);
  }
  
  /* RESPONSIVE */
  @media(max-width:900px){
    .grid { grid-template-columns:1fr 1fr; }
  }
  
  @media(max-width:600px){
    .grid { grid-template-columns:1fr; }
    .filters-grid { grid-template-columns:1fr; }
    .saints-hero h1 {font-size: 40px;}
  }