#features { padding: 7rem 0; }

.fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--brd);
  margin-top: 5rem;
}

.fc {
  border-right: 1px solid var(--brd);
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.fc:nth-child(3) { border-right: none; }
.fc:nth-child(4),
.fc:nth-child(5),
.fc:nth-child(6) { border-top: 1px solid var(--brd); }
.fc:nth-child(6) { border-right: none; }

.fc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.fc:hover::after { transform: scaleX(1); }
.fc:hover        { background: var(--bg3); }

.fiw { overflow: hidden; }
.fi  { width: 100%; height: 200px; object-fit: cover; transition: transform .6s ease; }
.fc:hover .fi { transform: scale(1.06); }

.fb { padding: 2rem 2.5rem 2.5rem; }

.fn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--brd);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color .3s;
}
.fc:hover .fn { color: var(--gold); opacity: .5; }

.fc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--tx);
  margin-bottom: .65rem;
}
.fc p { font-size: .84rem; font-weight: 200; line-height: 1.85; color: var(--txm); }
