/* 不定期關懷行動網格 (Irregular Actions Grid) */
.irregular-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .irregular-grid-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.irregular-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition-fast);
  text-align: left;
}

.irregular-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.irregular-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.irregular-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fdf6ec;
  border: 1px solid var(--primary-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.irregular-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
}

.irregular-badge {
  display: inline-block;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

/* 協會招募同工 12 專長網格 (Volunteer & Coworker Grid 12) */
.volunteer-grid-12 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .volunteer-grid-12 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .volunteer-grid-12 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.volunteer-role-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition-fast);
  text-align: left;
}

.volunteer-role-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.volunteer-role-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #faf8f4;
  border: 1px solid var(--primary-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.volunteer-role-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.volunteer-role-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* 志工同工號召大橫幅 (Volunteer CTA Banner) */
.volunteer-cta-box {
  background: linear-gradient(135deg, #2c251f 0%, #1a1613 100%);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 168, 67, 0.35);
  margin-top: 40px;
}

@media (max-width: 768px) {
  .volunteer-cta-box {
    padding: 30px 20px;
  }
}

.volunteer-cta-box h3 {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.volunteer-cta-box p {
  color: #e0d8cc;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 26px auto;
}

/* ==========================================================================
   偏鄉兒少關懷與 2026 志工服務行程模組 (Rural Youth & Volunteer Schedule)
   ========================================================================== */
.rural-spots-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .rural-spots-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.rural-spot-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.rural-spot-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rural-spot-card.meinong {
  border-top: 5px solid #1a73e8;
}

.rural-spot-card.sandimen {
  border-top: 5px solid #7c3aed;
}

.rural-spot-header {
  padding: 24px 24px 18px 24px;
  border-bottom: 1px solid var(--border-light);
  background: #faf8f5;
}

@media (max-width: 640px) {
  .rural-spot-header {
    padding: 18px 16px 14px 16px;
  }
}

.rural-spot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rural-spot-badge.blue {
  background: #e8f0fe;
  color: #1a73e8;
}

.rural-spot-badge.purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.rural-spot-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 640px) {
  .rural-spot-title {
    font-size: 1.22rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.rural-spot-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .rural-spot-meta {
    font-size: 0.82rem;
  }
}

.rural-spot-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  word-break: break-word;
}

.rural-spot-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

@media (max-width: 640px) {
  .rural-spot-body {
    padding: 16px 14px;
    gap: 16px;
  }
}

/* 行程時間表表格 */
.schedule-table-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  text-align: left;
}

.schedule-table th {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.schedule-table.blue th {
  background: #e8f0fe;
  color: #174ea6;
  border-bottom: 2px solid #aecbfa;
}

.schedule-table.purple th {
  background: #f3e8ff;
  color: #6b21a8;
  border-bottom: 2px solid #d8b4fe;
}

.schedule-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:nth-child(even) {
  background: #fafaf8;
}

.schedule-table .date-highlight {
  font-weight: 700;
  color: var(--text-primary);
}

.schedule-table-note {
  padding: 8px 14px;
  background: #fdfbf7;
  font-size: 0.8rem;
  color: var(--primary-gold-dark);
  font-weight: 600;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* 活動流程 (Timeline Flow) */
.flow-timeline-box {
  background: #fbf9f6;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px dashed var(--border-medium);
}

.flow-timeline-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flow-step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.flow-step-time {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* 志工支持與培力（茶會 ＆ 核心會議） */
.support-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .support-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.support-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.support-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.support-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.support-card-time {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-gold-dark);
}

.support-dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.support-date-chip {
  background: #f7f5f2;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.support-date-chip:hover {
  background: #f0eae1;
  border-color: var(--primary-gold);
}

