/* Nie mamy Planety B – strona statyczna (tylko main) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
  background: #fff;
}

main.page {
  min-height: 100vh;
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  background: #fff;
  color: #00479A;
}

.breadcrumbs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 12px 12px;
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
  min-width: max-content;
}

.breadcrumbs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00479A;
  text-decoration: none;
  white-space: nowrap;
}

.breadcrumbs-link:hover {
  opacity: 0.8;
}

.breadcrumbs-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.breadcrumbs-sep {
  color: #7D7D7D;
  margin: 0 4px;
}

.breadcrumbs-sep::before {
  content: ">";
}

.breadcrumbs-current {
  font-weight: 600;
  color: #00479A;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .breadcrumbs-inner {
    padding: 24px 16px;
    gap: 16px;
  }
}

/* ----- Hero ----- */
.eco-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .eco-hero {
    min-height: 600px;
  }
}

.eco-hero-bg {
  position: absolute;
  inset: 0;
}

.eco-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eco-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.eco-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .eco-hero-inner {
    padding: 64px 12px;
  }
}

.eco-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .eco-hero-content {
    gap: 32px;
  }
}

.eco-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.eco-hero-label-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #fff;
}

.eco-hero-title {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 768px) {
  .eco-hero-title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (min-width: 1024px) {
  .eco-hero-title {
    font-size: 60px;
    line-height: 60px;
  }
}

.eco-hero-subtitle {
  margin: 0;
  max-width: 672px;
  font-size: 18px;
  line-height: 26px;
  color: #f3f4f6;
}

@media (min-width: 768px) {
  .eco-hero-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}

.eco-hero-cta {
  display: inline-block;
  max-width: 256px;
  padding: 2px;
  background: linear-gradient(to right, #FF4500, #FFA500);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
}

.eco-hero-cta span {
  display: block;
  padding: 12px 36px;
  background: transparent;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.eco-hero-cta:hover span {
  background: rgba(255,255,255,0.2);
}

/* ----- Stats ----- */
.eco-stats {
  background: #fff;
  padding: 48px 0;
}

.eco-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .eco-stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }
}

.eco-stats-item {
  flex: 1;
  min-width: 0;
  border-left: 4px solid #1152d4;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eco-stats-value {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #1e293b;
}

.eco-stats-label {
  font-size: 16px;
  line-height: 26px;
  color: #515151;
}

/* ----- Why rail ----- */
.eco-whyrail {
  background: #fff;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .eco-whyrail {
    padding: 96px 0;
  }
}

.eco-whyrail-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .eco-whyrail-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.eco-whyrail-left {
  flex: 1;
  min-width: 0;
  max-width: 548px;
}

.eco-whyrail-text {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eco-whyrail-heading {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .eco-whyrail-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.eco-whyrail-intro {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #4b5563;
}

@media (min-width: 768px) {
  .eco-whyrail-intro {
    font-size: 20px;
    line-height: 30px;
  }
}

.eco-whyrail-chart {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #f6f6f8;
}

.eco-whyrail-chart-title {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #6b7280;
}

.eco-whyrail-chart-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eco-whyrail-chart-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
}

.eco-whyrail-chart-row-header span:last-child {
  font-weight: 600;
}

.eco-whyrail-chart-value--green {
  color: #2e7d32 !important;
}

.eco-whyrail-chart-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eco-whyrail-chart-bar-wrap {
  height: 12px;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  background: #e5e7eb;
}

.eco-whyrail-chart-bar {
  height: 100%;
  border-radius: 9999px;
  background: #9ca3af;
}

.eco-whyrail-chart-bar--85 {
  width: 85%;
}

.eco-whyrail-chart-bar--35 {
  width: 35%;
}

.eco-whyrail-chart-bar--5 {
  width: 5%;
}

.eco-whyrail-chart-bar--green {
  background: #149939;
}

.eco-whyrail-chart-footnote {
  margin: 20px 0 0;
  font-size: 12px;
  font-style: italic;
  line-height: 18px;
  color: #9ca3af;
}

.eco-whyrail-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-width: 0;
}

@media (min-width: 640px) {
  .eco-whyrail-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eco-whyrail-cards {
    width: 524px;
    flex-shrink: 0;
  }
}

.eco-whyrail-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #e8f5e9;
}

.eco-whyrail-card-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.1);
}

.eco-whyrail-card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.eco-whyrail-card-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #0d121b;
}

.eco-whyrail-card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
}

/* ----- Concrete actions ----- */
.eco-concrete {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #f6f6f8;
  padding: 65px 0;
}

.eco-concrete-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.eco-concrete-heading {
  margin: 0;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .eco-concrete-heading {
    font-size: 60px;
    line-height: 50px;
  }
}

.eco-concrete-line {
  width: 96px;
  height: 6px;
  border-radius: 9999px;
  background: #2e7d32;
}

/* ----- Kolej na Las ----- */
.eco-kolej {
  scroll-margin-top: 24px;
  background: #e8f5e9;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .eco-kolej {
    padding: 80px 0;
  }
}

.eco-kolej-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .eco-kolej-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}

.eco-kolej-content {
  flex: 1;
  min-width: 0;
  max-width: 608px;
}

.eco-kolej-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eco-kolej-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eco-kolej-label-icon {
  width: 24px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.eco-kolej-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 20px;
  color: #2e7d32;
}

.eco-kolej-title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .eco-kolej-title {
    font-size: 48px;
    line-height: 50px;
  }
}

.eco-kolej-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eco-kolej-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #374151;
}

@media (min-width: 768px) {
  .eco-kolej-intro p {
    font-size: 20px;
  }
}

.eco-kolej-link {
  font-weight: 600;
  color: #374151;
  text-decoration: underline;
}

.eco-kolej-steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 640px) {
  .eco-kolej-steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.eco-kolej-step {
  flex: 1;
  min-width: 0;
  max-width: 186px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eco-kolej-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #2e7d32;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #2e7d32;
}

.eco-kolej-step-title {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #0d121b;
}

.eco-kolej-step-desc {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #4b5563;
}

.eco-kolej-right {
  flex: 1;
  min-width: 0;
  max-width: 608px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding-top: 32px;
}

@media (min-width: 1024px) {
  .eco-kolej-right {
    padding-top: 0;
  }
}

.eco-kolej-card {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.eco-kolej-card-img {
  width: 100%;
  aspect-ratio: 606 / 218;
  object-fit: cover;
  display: block;
}

.eco-kolej-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eco-kolej-card-lead {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #7d7d7d;
}

.eco-kolej-card-number {
  margin: 0;
  text-align: center;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: #2e7d32;
}

@media (min-width: 768px) {
  .eco-kolej-card-number {
    font-size: 70px;
    line-height: 80px;
  }
}

.eco-kolej-card-suffix {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #0d121b;
}

.eco-kolej-card-divider {
  margin-top: 24px;
  height: 1px;
  width: 100%;
  background: #e5e7eb;
}

.eco-kolej-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.eco-kolej-card-footer-label {
  font-size: 14px;
  line-height: 20px;
  color: #7d7d7d;
}

.eco-kolej-card-footer-place {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #262626;
}

.eco-kolej-card-pin {
  width: 14px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.eco-kolej-logos-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eco-kolej-logos-link {
  display: flex;
  height: 110px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: opacity 0.2s;
}

.eco-kolej-logos-link:hover {
  opacity: 0.9;
}

.eco-kolej-logo {
  object-fit: contain;
  object-position: center;
}

.eco-kolej-logo--ep {
  height: 34px;
  width: 180px;
}

@media (min-width: 768px) {
  .eco-kolej-logo--ep {
    width: 251px;
  }
}

.eco-kolej-logo--pos {
  height: 54px;
  width: 160px;
  object-position: right;
}

@media (min-width: 768px) {
  .eco-kolej-logo--pos {
    width: 251px;
  }
}

.eco-kolej-cta-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #00479a;
  text-decoration: underline;
}

.eco-kolej-cta-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ----- Values in practice ----- */
.eco-values {
  background: #fff;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .eco-values {
    padding: 120px 0;
  }
}

.eco-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .eco-values-inner {
    gap: 40px;
  }
}

.eco-values-heading {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .eco-values-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.eco-values-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .eco-values-grid {
    flex-direction: row;
    gap: 24px;
  }
}

.eco-values-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eco-values-goals {
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f6f6f8;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .eco-values-goals {
    flex-shrink: 0;
    width: 534px;
  }
}

.eco-values-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.eco-values-icon-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.eco-values-icon-wrap--blue {
  background: #eff6ff;
}

.eco-values-icon-wrap--white {
  background: #fff;
}

.eco-values-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.eco-values-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eco-values-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #111827;
}

.eco-values-desc {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #515151;
}

/* ----- Join mission ----- */
.eco-join {
  background: #fff;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .eco-join {
    padding: 120px 0;
  }
}

.eco-join-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .eco-join-inner {
    gap: 80px;
  }
}

.eco-join-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.eco-join-heading {
  margin: 0;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #1e293b;
}

@media (min-width: 768px) {
  .eco-join-heading {
    font-size: 40px;
    line-height: 50px;
  }
}

.eco-join-subtitle {
  margin: 0;
  max-width: 800px;
  font-size: 18px;
  line-height: 30px;
  color: #475569;
}

@media (min-width: 768px) {
  .eco-join-subtitle {
    font-size: 20px;
  }
}

.eco-join-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .eco-join-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eco-join-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.eco-join-card-icon-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.eco-join-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.eco-join-card-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
}

.eco-join-card-desc {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #475569;
  text-align: center;
}

.eco-join-line {
  width: 96px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #2e7d32;
}

.eco-join-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.eco-join-cta-heading {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #1e293b;
}

@media (min-width: 768px) {
  .eco-join-cta-heading {
    font-size: 24px;
    line-height: 34px;
  }
}

.eco-join-cta-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .eco-join-cta-buttons {
    grid-template-columns: auto auto;
  }
}

.eco-join-cta-primary {
  display: inline-block;
  padding: 2px;
  background: linear-gradient(to right, #FF4500, #FFA500);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
}

.eco-join-cta-primary span {
  display: block;
  padding: 12px 36px;
  border-radius: 6px;
  transition: background 0.2s;
}

.eco-join-cta-primary:hover span {
  background: rgba(255,255,255,0.2);
}

.eco-join-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 1.6px solid #fd4d07;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #262626;
  text-decoration: none;
  transition: opacity 0.2s;
}

.eco-join-cta-secondary:hover {
  opacity: 0.9;
}

/* ----- Discover more ----- */
.eco-discover {
  background: #f6f6f8;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .eco-discover {
    padding: 96px 0;
  }
}

.eco-discover-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

.eco-discover-heading {
  margin: 0 0 16px;
  text-align: center;
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #0d121b;
}

@media (min-width: 768px) {
  .eco-discover-heading {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 50px;
  }
}

.eco-discover-line {
  width: 96px;
  height: 6px;
  margin: 0 auto 32px;
  border-radius: 9999px;
  background: #1152d4;
}

@media (min-width: 768px) {
  .eco-discover-line {
    margin-bottom: 48px;
  }
}

.eco-discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: max-content;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .eco-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eco-discover-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.discover-card {
  max-width: 302px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.discover-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.discover-card-img-wrap {
  height: 142px;
  width: 100%;
  overflow: hidden;
}

.discover-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 32px 32px;
}

.discover-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #262626;
}

.discover-card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #515151;
}

.discover-card-link {
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #00479a;
}
