.fss-section {
  background: #fff;
  padding: 60px 0;
  color: #000000;
  font-family: "Raleway", sans-serif;
  width: 100%;
}

.fss-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 60px;
}

.fss-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    text-transform: capitalize;
    line-height: 120%;
}

.fss-title .cormorant-font {
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    font-family: "Cormorant", serif;
}

/* GRID */
.fss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 31.5%));
  gap: 25px;
}

/* CARD */
.fss-card {
  border: 1px solid #eee;
  /* border-radius: 8px; */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.fss-card:hover{
   transform: scale(1.03); 
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); 
}

.fss-card a,
.fss-explore a {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    line-height: 150%;
}


.fss-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fss-card-content {
    padding: 20px;
}

.fss-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    /* color: #666; */
}

.fss-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.019em;
    font-weight: 600;
    line-height: 150%;
}

.fss-challenge {
    /* color: #555; */
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.022em;
}

.fss-readmore {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* EXPLORE */
.fss-explore {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .fss-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 47%));
  }
}

@media (max-width: 600px) {
  .fss-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 100%));
  }

}

@media (max-width: 425px) {
  .fss-section{
    padding: 30px 0;
  }
    .fss-container {
        padding: 0 20px;
    }

    .fss-title {
        font-size: 26px;
    }

    .fss-title .cormorant-font {
        font-size: 30px;
    }
}