/* ===========================
   FROM STUCK TO STRONG SECTION
=========================== */

.fi-section {
  background: #F6F6F6;
  padding: 60px 0;
  color: #000000;
  font-family: "Raleway", sans-serif;
}

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

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

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

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

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

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



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


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

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

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

.fi-meta > span:nth-child(2) {
 display: inline-block;
    width: 40%;
    padding-left: 10px;
    text-align: end;
    box-sizing: border-box;
}

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

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

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

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

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

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

}

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

  .fi-container {
    padding: 0px 20px;
  }

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