/* Growth Section */
.growth-section {
  padding: 80px 0 80px 0;
  background: #2e2b2c;
}

.growth-container {
  max-width: 1184px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Section Header */
.growth-section .section-header {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 32px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: nowrap;
}

.growth-section .header-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  max-width: 656px;
}

.growth-section .section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #ffffff !important;
  margin: 0;
  text-align: left;
}

.growth-section .section-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff !important;
  margin: 0;
}

/* See Details Button */
.growth-section .btn-see-details {
  background: #ffcc29;
  color: #1f1f1f;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  align-self: flex-end;
}

.growth-section .btn-see-details:hover {
  opacity: 0.9;
}

/* Growth Cards Container */
.growth-cards {
  background: #f8f7ec;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  gap: 40px;
}

/* Individual Card */
.growth-card {
  background: #2e2b2c;
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  /* Remove default link styling */
  text-decoration: none !important;
  color: inherit;
}

.growth-card:hover {
  cursor: pointer;
}

.growth-card:visited {
  color: inherit;
}

.growth-card:visited .growth-title,
.growth-card:visited .growth-description {
  color: #ffffff !important;
}

/* Card Icon */
.growth-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.growth-icon svg {
  width: 100%;
  height: 100%;
}

/* Card Text Content */
.growth-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.growth-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff !important;
  margin: 0;
  text-decoration: none !important;
}

.growth-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff !important;
  margin: 0;
  text-decoration: none !important;
}

/* Card Image */
.growth-image {
  height: 244px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: auto;
}

.growth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Behavior */
@media (max-width: 1024px) {
  .growth-cards {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .growth-cards {
    flex-direction: column;
    padding: 24px 16px;
    gap: 24px;
  }

  .growth-section .section-header {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 16px;
    max-width: 100%;
  }

  .growth-section .header-content {
    gap: 24px;
    max-width: 100%;
    width: 100%;
  }

  .growth-section .section-title {
    font-size: 24px;
    text-align: center;
  }

  .growth-section .section-description {
    text-align: center;
  }

  .growth-section .btn-see-details {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .growth-section {
    padding: 40px 0 40px 0;
  }

  .growth-container {
    gap: 48px;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}
