.cc-afdb9139-wrapper {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  color: #06505E;
  direction: rtl;
}

.cc-afdb9139-title {
  color: #06505E;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
}

.cc-afdb9139-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
  position: relative;
}

.cc-afdb9139-divider-line {
  height: 2px;
  width: 80px;
  background-color: #06505E;
  border-radius: 2px;
}

.cc-afdb9139-divider-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  z-index: 2;
  border-radius: 50%;
}

.cc-afdb9139-paw {
  color: #06505E;
  font-size: 28px;
  z-index: 3;
}

.cc-afdb9139-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.cc-afdb9139-card {
  background: #ffffff;
  border: 2px solid #6CCAE3;
  border-radius: 15px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(108, 202, 227, 0.15);
  cursor: pointer;
}

.cc-afdb9139-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(108, 202, 227, 0.25);
}

.cc-afdb9139-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(108, 202, 227, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.cc-afdb9139-icon-wrapper i {
  font-size: 30px;
  color: #06505E;
}

.cc-afdb9139-icon-wrapper svg {
  width: 30px;
  height: 30px;
  fill: #06505E;
}

.cc-afdb9139-card-title {
  color: #06505E;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Fredoka', sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
  .cc-afdb9139-grid {
    max-width: 720px;
    gap: 16px;
  }

  .cc-afdb9139-card {
    padding: 24px 16px;
  }
}

/* Mobile - keep 3 cards in one row */
@media (max-width: 768px) {
  .cc-afdb9139-title {
    font-size: 2rem;
  }

  .cc-afdb9139-divider {
    margin-bottom: 24px;
    gap: 10px;
  }

  .cc-afdb9139-divider-line {
    width: 60px;
  }
  
  .cc-afdb9139-divider-icon {
     background-color: #ffffff; /* Fallback for white sections */
  }

  .cc-afdb9139-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .cc-afdb9139-card {
    padding: 14px 6px;
    border-radius: 14px;
    min-height: 118px;
    box-shadow: 0 6px 18px rgba(108, 202, 227, 0.18);
  }

  .cc-afdb9139-card:hover {
    transform: none;
  }

  .cc-afdb9139-icon-wrapper {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }

  .cc-afdb9139-icon-wrapper i {
    font-size: 22px;
  }

  .cc-afdb9139-icon-wrapper svg {
    width: 22px;
    height: 22px;
  }

  .cc-afdb9139-card-title {
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: normal;
  }
}

/* Very small mobile */
@media (max-width: 390px) {
  .cc-afdb9139-grid {
    gap: 6px;
  }

  .cc-afdb9139-card {
    padding: 12px 4px;
    min-height: 105px;
  }

  .cc-afdb9139-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .cc-afdb9139-icon-wrapper i {
    font-size: 19px;
  }

  .cc-afdb9139-icon-wrapper svg {
    width: 19px;
    height: 19px;
  }

  .cc-afdb9139-card-title {
    font-size: 0.74rem;
  }
}