/* =============================================================================
   IFTAR - CONTENT SECTION
   ============================================================================= */

.ramadan-content-section {
  padding: 40px 0 16px 0;
  background-color: #f9fafb;
  font-family: 'Raleway', sans-serif;
}

.content-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* =============================================================================
   MAIN CONTENT AREA
   ============================================================================= */

.description-block {
  margin-bottom: 16px;
}

/* =============================================================================
   TERMS & CONDITIONS SECTION
   ============================================================================= */

.terms-block {
  margin-top: 20px;
}

.terms-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.terms-list {
  list-style-type: disc;
  padding-left: 20px;
}

.terms-list li {
  font-size: 1.125rem;
  margin-bottom: 4px;
  line-height: 1.6;
}

.terms-list li::marker {
  color: #871968;
}

/* =============================================================================
   SIDEBAR & AFFILIATE CARD
   ============================================================================= */

.sidebar-content {
  position: sticky;
  top: 20px;
  align-self: start;
  height: fit-content;
}

.affiliate-card {
  background: linear-gradient(135deg, #871968 0%, #6a1450 100%);
  color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: fit-content;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .affiliate-card {
    padding: 32px;
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-desc {
  color: #DBDBDB;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.btn-affiliate {
  width: 100%;
  background-color: #EDA72C;
  color: #871968;
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-disable {
  width: 100%;
  background-color: #cccccc;
  color: #666666;
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-affiliate:hover {
  background-color: #c4a132;
  animation: float 1s ease-in-out infinite;
}

.card-footer-text {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
