/* about-field-guide frontend styles */

.about-field-guide {
  background-color: var(--color-green-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem; /* 48px */
  padding: 5rem 1.75rem; /* 80px 28px */
  width: 100%;
}

/* Header Copy */
.about-field-guide .copy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem; /* 28px */
  text-align: center;
  max-width: 720px;
}

.about-field-guide .heading-component {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
}

.about-field-guide .subhead {
  color: var(--color-yellow-200, #FBEB8F);
  font-family: var(--font-subheading);
  font-size: var(--font-size-xl, 20px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-field-guide .h1-heading {
  color: var(--color-yellow-200, #FBEB8F);
  font-family: var(--font-heading, "Sora", sans-serif);
  font-size: var(--font-size-7xl, 72px);
  font-weight: var(--font-weight-extrabold, 800);
  line-height: 0.89;
  text-transform: uppercase;
}

.about-field-guide .body-copy {
  color: var(--color-yellow-200, #FBEB8F);
  font-family: var(--font-body, "Azo Sans", sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: 1.5;
}

/* Main Guide Container */
.about-field-guide .guide-container {
  background-color: var(--color-green-900, #373A19);
  border: 2px dashed var(--color-green-100, #F3F0E5);
  display: flex;
  flex-direction: column;
  gap: 3rem; /* 48px */
  padding: 2.5rem 1.75rem; /* 40px 28px */
  width: 100%;
  max-width: 1440px;
}

.about-field-guide .legumes-title {
  color: var(--color-yellow-200, #FBEB8F);
  font-family: var(--font-heading, "Sora", sans-serif);
  font-size: 2.25rem; /* 36px */
  font-weight: var(--font-weight-extrabold, 800);
  line-height: 0.89;
  text-transform: uppercase;
  text-align: center;
}

/* Pulses Section */
.about-field-guide .pulses-section {
  background-color: var(--color-green-950);
  border: 1px solid var(--color-green-700, var(--color-green-800));
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  padding: 0.75rem 1rem; /* 12px 16px */
}

.about-field-guide .pulses-header {
  padding: 1rem;
}

.about-field-guide .pulses-title {
  color: var(--color-green-100, #F3F0E5);
  font-family: var(--font-heading, "Sora", sans-serif);
  font-size: 1.5rem; /* 24px */
  font-weight: var(--font-weight-extrabold, 800);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.about-field-guide .pulse-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem; /* 40px */
}

.about-field-guide .pulse-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* 8px */
  width: 240px;
}

.about-field-guide .pulse-card-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.about-field-guide .pulse-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-field-guide .pulse-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem; /* 12px */
  padding: 1rem;
  text-align: center;
}

.about-field-guide .pulse-card-title {
  color: var(--color-yellow-200, #FBEB8F);
  font-family: var(--font-subheading, "Apolline Std", serif);
  font-size: var(--font-size-xl, 20px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.about-field-guide .pulse-card-divider {
  background-color: var(--color-green-700, var(--color-green-800));
  height: 1px;
  width: 161px;
}

.about-field-guide .pulse-card-description {
  color: var(--color-yellow-200, #FBEB8F);
  font-family: var(--font-body, "Azo Sans", sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: 1.5;
}

/* Other Legumes Section */
.about-field-guide .legume-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem; /* 40px */
}

.about-field-guide .legume-card {
  background-color: rgba(55, 58, 25, 0.56);
  border: 1px solid var(--color-green-700, var(--color-green-800));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0;
  width: 240px;
}

.about-field-guide .legume-card-title {
  color: var(--color-green-100, #F3F0E5);
  font-family: var(--font-heading, "Sora", sans-serif);
  font-size: 1.5rem; /* 24px */
  font-weight: var(--font-weight-extrabold, 800);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.about-field-guide .legume-card-image-wrapper {
  height: 151px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.about-field-guide .legume-card-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* CTA Button Section */
.about-field-guide .cta-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-field-guide .cta-button {
  background-color: var(--color-yellow-200, #FBEB8F);
  border: 1px solid var(--color-green-400, #D4D2C4);
  color: var(--color-green-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem; /* 12px */
  padding: 1.5rem; /* 24px */
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 348px;
}

.about-field-guide .cta-button:hover {
  background-color: var(--color-brown-900) !important;
  color: var(--color-yellow-200, #FBEB8F) !important ;
}

.about-field-guide .cta-button:hover .button-text { 
  color: var(--color-yellow-200, #FBEB8F) !important ;
}

.about-field-guide .button-text {
  color: var(--color-green-950);
  font-family: var(--font-body, "Azo Sans", sans-serif);
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.057em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.about-field-guide .button-icon {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
}

/* Responsive */
@media (max-width: 1024px) {
  .about-field-guide .pulse-cards-grid,
  .about-field-guide .legume-cards-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-field-guide .h1-heading {
    font-size: 3rem; /* 48px */
  }
  
  .about-field-guide .guide-container {
    padding: 2rem 1rem;
  }
  
  .about-field-guide .pulse-card,
  .about-field-guide .legume-card {
    width: 100%;
    max-width: 300px;
  }
} 