/* =========================
   RESOURCES PAGE STYLES
   ========================= */

/* Section layout */
.resources-section {
  padding: 90px 0 110px;
  background-color: #f7f9fb;
}

.resources-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page header */
.resources-section h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: #0b1f33;
}

.lead {
  font-size: 1.05rem;
  color: #5f6f7f;
  max-width: 650px;
  margin-bottom: 50px;
}

/* Resources grid */
.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

/* Individual resource card */
.resource-item {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

/* Resource tag (Guide / Form) */
.resource-meta {
  margin-bottom: 10px;
}

.resource-type {
  display: inline-block;
  background: #eef3ff;
  color: #2f4cff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Title */
.resource-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1f33;
  text-decoration: none;
  margin: 10px 0 8px;
}

.resource-title:hover {
  text-decoration: underline;
}

/* Description */
.resource-desc {
  font-size: 0.95rem;
  color: #5f6f7f;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Link button */
.resource-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2f4cff;
  text-decoration: none;
}

.resource-link:hover {
  text-decoration: underline;
}

/* CTA button area */
.resources-cta {
  text-align: center;
  margin-top: 20px;
}

/* Make button match your site style if needed */
.resources-cta .btn-primary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 8px;
}