.lcc-psalms-hero {
  --lcc-psalms-hero-grad-start: #f6d365;
  --lcc-psalms-hero-grad-end: #fda085;
  --lcc-psalms-hero-accent: #4a90d9;
  --lcc-psalms-hero-bar-start: #e85d2a;
  --lcc-psalms-hero-bar-end: #c0392b;
  --lcc-psalms-hero-title-color: #1a202c;
  --lcc-psalms-hero-icon-bg: rgba(255, 255, 255, 0.35);
  --lcc-psalms-hero-icon-color: #6b3a10;
  --lcc-psalms-hero-date-color: #5a3a1a;
  --lcc-psalms-hero-church-color: #6b3a10;
  --lcc-psalms-hero-body-color: #4a3020;
  --lcc-psalms-hero-rhythm-color: #6b4a2a;
  --lcc-psalms-hero-progress-color: #3a2010;
  background: linear-gradient(135deg, var(--lcc-psalms-hero-grad-start), var(--lcc-psalms-hero-grad-end));
  color: var(--lcc-psalms-hero-body-color);
  padding: 120px 24px 52px;
  position: relative;
  text-align: center;
}

.lcc-psalms-hero * {
  box-sizing: border-box;
}

.lcc-psalms-hero__icon {
  align-items: center;
  background: var(--lcc-psalms-hero-icon-bg);
  border-radius: 16px;
  color: var(--lcc-psalms-hero-icon-color);
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 0 auto 16px;
  width: 64px;
}

.lcc-psalms-hero__icon svg,
.lcc-psalms-hero svg {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lcc-psalms-hero__icon svg {
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  width: 34px;
}

.lcc-psalms-hero__icon i {
  color: currentColor;
  display: block;
  font-size: 32px;
  line-height: 1;
}

.lcc-psalms-hero__icon--image {
  overflow: hidden;
}

.lcc-psalms-hero__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lcc-psalms-hero__title {
  color: var(--lcc-psalms-hero-title-color);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
}

.lcc-psalms-hero__dates,
.lcc-psalms-hero__church,
.lcc-psalms-hero__description,
.lcc-psalms-hero__rhythm {
  margin-left: auto;
  margin-right: auto;
}

.lcc-psalms-hero__dates {
  color: var(--lcc-psalms-hero-date-color);
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 600;
  margin-bottom: 4px;
}

.lcc-psalms-hero__church {
  color: var(--lcc-psalms-hero-church-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.lcc-psalms-hero__description {
  color: var(--lcc-psalms-hero-body-color);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 16px;
}

.lcc-psalms-hero__rhythm {
  color: var(--lcc-psalms-hero-rhythm-color);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

.lcc-psalms-hero__progress {
  max-width: 480px;
  margin: 0 auto 28px;
}

.lcc-psalms-hero__progress-label {
  color: var(--lcc-psalms-hero-progress-color);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: space-between;
  margin-bottom: 8px;
}

.lcc-psalms-hero__bar-bg {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 99px;
  height: 12px;
  overflow: hidden;
}

.lcc-psalms-hero__bar-fill {
  background: linear-gradient(90deg, var(--lcc-psalms-hero-bar-start), var(--lcc-psalms-hero-bar-end));
  border-radius: 99px;
  height: 100%;
  transition: width 0.6s ease;
  width: 0%;
}

.lcc-psalms-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lcc-psalms-hero__button,
.lcc-psalms-hero__jump {
  align-items: center;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 7px;
  justify-content: center;
  padding: 13px 26px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.lcc-psalms-hero__button:hover,
.lcc-psalms-hero__jump:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.lcc-psalms-hero__button svg,
.lcc-psalms-hero__jump svg {
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  width: 16px;
}

.lcc-psalms-hero__button--primary {
  background: var(--lcc-psalms-hero-accent);
  color: #ffffff;
}

.lcc-psalms-hero__button--secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #2d3748;
}

.lcc-psalms-hero__sync-status {
  color: var(--lcc-psalms-hero-progress-color);
  font-size: 12px;
  margin-top: 10px;
  min-height: 16px;
}

.lcc-psalms-hero__modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 10000;
}

.lcc-psalms-hero__modal.is-open {
  display: flex;
}

.lcc-psalms-hero__modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  position: absolute;
}

.lcc-psalms-hero__modal-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  padding: 18px;
  position: relative;
  text-align: left;
  width: min(92vw, 390px);
}

.lcc-psalms-hero__modal-head {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lcc-psalms-hero__modal-title {
  color: #2d3748;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.lcc-psalms-hero__modal-subtitle,
.lcc-psalms-hero__sync-message {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}

.lcc-psalms-hero__modal-close {
  background: #f3f4f6;
  border: 0;
  border-radius: 999px;
  color: #374151;
  cursor: pointer;
  font-size: 18px;
  height: 28px;
  line-height: 1;
  width: 28px;
}

.lcc-psalms-hero__sync-form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.lcc-psalms-hero__sync-form.is-active {
  display: flex;
}

.lcc-psalms-hero__sync-input {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 12px;
  width: 100%;
}

.lcc-psalms-hero__sync-submit {
  background: var(--lcc-psalms-hero-accent);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
}

.lcc-psalms-hero__sync-switch {
  align-self: flex-start;
  background: none;
  border: 0;
  color: #6a5ca5;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  text-decoration: underline;
}

.lcc-psalms-hero__sync-message {
  margin-top: 8px;
  min-height: 16px;
}

.lcc-psalms-hero__sync-message.error {
  color: #b91c1c;
}

.lcc-psalms-hero__sync-message.success {
  color: #166534;
}

.lcc-psalms-hero__jump {
  background: var(--lcc-psalms-hero-accent);
  border-radius: 99px;
  bottom: 24px;
  box-shadow: 0 4px 16px rgba(74, 144, 217, 0.35);
  color: #ffffff;
  font-size: 13px;
  padding: 11px 16px;
  position: fixed;
  right: 24px;
  z-index: 9999;
}

@media (max-width: 600px) {
  .lcc-psalms-hero {
    padding: 40px 16px;
  }

  .lcc-psalms-hero__jump {
    bottom: 16px;
    font-size: 12px;
    padding: 10px 14px;
    right: 16px;
  }
}