/* You Might Be Interested In Section */
.interested-section {
  padding: 4rem 2rem;
  background: #fff;
  position: relative;
}

.interested-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */
.interested-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.interested-section .section-title {
  font-family: 'Roboto Slab', serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #2C3E50;
  margin: 0;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Cards Grid */
.interested-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.interested-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 4px solid transparent;
}

/* Card Border Colors */
.card-blue {
  border-color: #90CAF9;
}

.card-green {
  border-color: #A5D6A7;
}

.card-pink {
  border-color: #F48FB1;
}

.interested-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interested-card:hover .card-image img {
  transform: scale(1.05);
}

/* Card Content */
.card-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  flex-grow: 1;
  position: relative;
}

/* Decorative Stars */
.interested-section .card-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url('../images/bigstar.png'),
    url('../images/smallstar.png'),
    url('../images/shinystar.png'),
    url('../images/smallstar.png'),
    url('../images/bigstar.png');
  background-repeat: no-repeat;
  background-size:
    42px 42px,
    22px 22px,
    30px 30px,
    20px 20px,
    38px 38px;
  background-position:
    12% 18%,
    85% 20%,
    70% 70%,
    25% 75%,
    88% 80%;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* Card Colors */
.card-blue .card-content {
  background: linear-gradient(180deg, #E3F2FD 0%, #BBDEFB 100%);
}

.card-green .card-content {
  background: linear-gradient(180deg, #E8F5E9 0%, #C8E6C9 100%);
}

.card-pink .card-content {
  background: linear-gradient(180deg, #FCE4EC 0%, #F8BBD0 100%);
}

/* Card Title */
.card-title {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* Card Description */
.card-description {
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* Card Button */
.card-button {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: #FFD54F;
  color: #2C3E50;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .interested-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .interested-section {
    padding: 3rem 1.5rem;
  }

  .interested-section .section-title {
    font-size: 24px;
  }

  .interested-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .interested-section {
    padding: 2rem 1rem;
  }

  .interested-section .section-title {
    font-size: 20px;
  }

  .card-image {
    height: 160px;
  }

  .card-content {
    padding: 1rem;
  }

  .card-icon {
    font-size: 24px;
    top: 1rem;
    right: 1rem;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }

  .card-button {
    font-size: 12px;
    padding: 0.4rem 1rem;
  }
}
