/**
 * Documents Section (Cukup Siapkan 4 Dokumen) - Mobile First
 * 
 * Features:
 * - 4 hardcoded items with numbered badges
 * - Custom colors for title, span, and number backgrounds
 * - Responsive grid layout
 */

/* Documents Section Base */
.documents-section {
  background-color: var(--doc-bg, #ffffff);
  padding: 40px 0;
  position: relative;

  @media (min-width: 1200px) {
    padding: 60px 0;
  }
}

.documents-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

  @media (min-width: 1200px) {
    padding: 0px;
  }
}

/* Section Title */
.documents-title {
  font-family: "Outfit", sans-serif !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 40px !important;
  text-align: center;
  margin-bottom: 40px !important;
  color: var(--doc-title-color, #1e3a5f) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-top: 0px !important;

  @media (min-width: 1200px) {
    font-size: 32px !important;
    line-height: 48px !important;
  }
}

/* Highlighted part of title ("4 Dokumen") */
.documents-title-highlight {
  color: var(--doc-title-span-color, #2c9251) !important;
  font-weight: 600 !important;
}

/* Document Grid */
.documents-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* max-width: 900px;
  margin: 0 auto; */

  @media (min-width: 1200px) {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

/* Individual Document Item */
.document-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding: 0;
  background: transparent;
  transition: transform 0.3s ease;
}

/* .document-item:hover {
  transform: translateX(2px);
} */

/* Numbered Badge with Rounded Background Box */
.document-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--doc-number-box-bg, #e8f5ec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  color: var(--doc-number-color, #2c9251);
  flex-shrink: 0;
  position: relative;
}

/* Document Text */
.document-text {
  font-family: "open sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: var(--doc-text-color, #333333) !important;
  margin: 0 !important;
  flex: 1 !important;
}
