/* policies.html page styles */

/* Professional Redesign Styles */
.policies-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 0 6rem 0;
  font-family: 'Nunito Sans', sans-serif;
  color: #333;
}

/* Header Section */
.policies-header {
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.policies-header h1 {
  font-family: 'Spectral', serif;
  font-size: 2.75rem;
  color: #0f2b46;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.policies__intro {
  font-size: 1.15rem;
  color: #586a84;
  max-width: 750px;
  margin: 0;
  line-height: 1.6;
}

/* Grid Layout */
.policies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  width: 100%;
}

/* Card Styling - Flat & Professional */
.policy-group {
  background: #fff;
  border: 1px solid #d1d9e2;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.policy-group__header {
  background: #0f2b46;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
}

.policy-group__header h2 {
  font-family: 'Spectral', serif;
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* List Styling */
.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.download-item {
  border-bottom: 1px solid #f0f2f5;
}

.download-item:last-child {
  border-bottom: none;
}

/* Link Styling */
.download-link {
  text-decoration: none;
  color: #24344f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  transition: background-color 0.2s ease;
}

.download-link:hover {
  background-color: #f8fafc;
}

.link-title {
  font-weight: 600;
  font-size: 1rem;
  color: #1a202c;
}

/* Arrow Icon Styling */
.download-icon {
  color: #94a3b8;
  width: 20px;
  height: 20px;
  stroke-width: 2px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State */
.download-link:hover .download-icon {
  color: #0f2b46;
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .policies-header h1 {
    font-size: 2rem;
  }

  .policies__grid {
    grid-template-columns: 1fr;
  }
}
