/* ===========================
   Calendar Buttons (Calendar Page)
   =========================== */
.calendar-buttons {
  margin-bottom: 1rem;
  text-align: center;
}

.calendar-buttons button {
  background-color: #0066cc;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.calendar-buttons button:hover {
  background-color: #004999;
}

/* ===========================
   FULL CALENDAR (Calendar page)
   =========================== */
.calendar-full {
  width: 80%;              /* 2/3 width */
  margin-left: auto;       /* center horizontally */
  margin-right: auto;
  height: 400px;           
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.calendar-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablets & mobiles (≤1024px): expand to full width */
@media (max-width: 1024px) {
  .calendar-full {
    width: 100%;
    height: 90vh;          /* fit viewport height */
  }
}

/* ===========================
   AGENDA PREVIEW (Homepage)
   =========================== */
.calendar-preview {
  width: 66%;              /* 2/3 width */
  margin-left: auto;
  margin-right: auto;
  height: 300px;           /* shorter preview box */
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.calendar-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablets & mobiles (≤1024px): expand to full width */
@media (max-width: 1024px) {
  .calendar-preview {
    width: 100%;
    height: 60vh;
    max-height: 640px;
  }
}

/* Shrink and lighten the top-left masthead title */
.masthead__inner-wrap .site-title {
  font-size: 1rem;      /* smaller font size */
  font-weight: 400;     /* regular instead of bold */
  color: #555;          /* softer grey */
}

/* Hide big page titles (since logo already replaces it) */
.page__title,
.page__meta {
  display: none !important;
}

/* Statement of Faith block styling */
.statement-faith {
  border-left: 4px solid #0066cc;   /* blue accent */
  background-color: #f9f9f9;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 6px;
}

.statement-faith strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.statement-faith ol,
.statement-faith ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}

