/* =========================================================
   Cántico de Fe Music
   Devotionals View
   V10.7.1
   ========================================================= */

.devotionals-page {
  width: 100%;
}

/* =========================================================
   Hero
   ========================================================= */

.devotionals-hero {
  margin-bottom: 42px;
}

.devotionals-eyebrow,
.devotionals-section-eyebrow {
  display: block;

  margin-bottom: 12px;

  color: #f5c84c;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.devotionals-hero h1 {
  margin: 0;

  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.devotionals-intro {
  max-width: 720px;

  margin: 18px 0 0;

  color: #aab3c0;

  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   Section header
   ========================================================= */

.devotionals-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;

  margin-bottom: 22px;
}

.devotionals-section-header h2 {
  margin: 0;

  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.devotionals-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 38px;
  height: 38px;

  padding: 0 12px;

  border: 1px solid rgba(245, 200, 76, 0.55);
  border-radius: 999px;

  background: rgba(245, 200, 76, 0.08);

  color: #f5c84c;

  font-size: 14px;
  font-weight: 800;
}

/* =========================================================
   Devotional cards
   ========================================================= */

.devotionals-page .cantico-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;
}

.devotional-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 280px;

  padding: 24px;

  border: 1px solid #263747;
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #142330 0%,
      #101b25 100%
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.devotional-card:hover {
  transform: translateY(-3px);

  border-color: rgba(245, 200, 76, 0.5);

  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.2);
}

.devotional-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 20px;
}

.devotional-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  border: 1px solid rgba(245, 200, 76, 0.55);
  border-radius: 13px;

  background: #082c49;

  color: #ffd45f;

  font-size: 20px;
}

.devotional-card__badge {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;

  border: 1px solid rgba(245, 200, 76, 0.45);
  border-radius: 999px;

  background: rgba(245, 200, 76, 0.08);

  color: #f5cf62;

  font-size: 12px;
  font-weight: 700;
}

.devotional-card h3 {
  margin: 0 0 14px;

  color: #f5f7fa;

  font-size: 21px;
  line-height: 1.3;
}

.devotional-card__scripture {
  margin: 0 0 16px;

  color: #f5cf62;

  font-size: 15px;
  font-weight: 700;
}

.devotional-card__content {
  margin: 0;

  color: #aab3c0;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   Empty state
   ========================================================= */

.devotionals-empty {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 26px;

  border: 1px dashed rgba(245, 200, 76, 0.5);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #142330 0%,
      #101b25 100%
    );
}

.devotionals-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  flex: 0 0 54px;

  border: 1px solid rgba(245, 200, 76, 0.55);
  border-radius: 15px;

  background: #082c49;

  color: #ffd45f;

  font-size: 22px;
}

.devotionals-empty h3 {
  margin: 0 0 7px;

  color: #f5f7fa;

  font-size: 19px;
}

.devotionals-empty p {
  margin: 0;

  color: #aab3c0;

  line-height: 1.6;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 700px) {
  .devotionals-hero {
    margin-bottom: 34px;
  }

  .devotionals-section-header {
    align-items: center;
  }

  .devotionals-page .cantico-grid {
    grid-template-columns: 1fr;
  }

  .devotional-card {
    min-height: auto;
  }

  .devotionals-empty {
    align-items: flex-start;
  }
}
