.home-featured {
  position: relative;
  width: 100%;
  background: #172c26;
  color: #f4eee2;
  overflow: hidden;
}
.featured-container {
  width: min(calc(100% - 80px), 1400px);
  margin: 0 auto;
  padding: 135px 0 150px;
}
.featured-header {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 100px;
  align-items: end;
  padding-bottom: 75px;
}
.featured-header-left .section-index {
  display: block;
  margin-bottom: 35px;
  color: #c8a66a;
}
.featured-header-left h2 {
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.045em;
}
.featured-header-left h2 em {
  color: #d7aaa0;
  font-style: italic;
}
.featured-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
  margin-left: auto;
}
.featured-header-right p {
  color: rgba(244, 238, 226, 0.65);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.9;
}
.featured-view-link {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 30px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(244, 238, 226, 0.45);
  color: #f4eee2;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.featured-view-link strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(244, 238, 226, 0.4);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 400;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.featured-view-link:hover {
  color: #d7aaa0;
  border-color: #d7aaa0;
}
.featured-view-link:hover strong {
  background: #d7aaa0;
  border-color: #d7aaa0;
  color: #172c26;
  transform: translate(3px, -3px);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.featured-card {
  position: relative;
  overflow: hidden;
  background: #10221d;
}
.featured-card-large {
  height: 700px;
}
.featured-card-small {
  height: 535px;
  margin-top: 115px;
}
.featured-card-small:nth-child(3) {
  margin-top: 230px;
}
.featured-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #f4eee2;
  overflow: hidden;
}
.featured-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.featured-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-card-large .featured-card-media img {
  object-position: center center;
}
.featured-card-small .featured-card-media img {
  object-position: center center;
}
.featured-card-link:hover .featured-card-media img {
  transform: scale(1.07);
}
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 34, 29, 0.42) 0%,
    rgba(16, 34, 29, 0.04) 35%,
    rgba(16, 34, 29, 0.72) 100%
  );
  z-index: 1;
  transition: opacity 0.5s ease;
}
.featured-card-link:hover .featured-card-overlay {
  opacity: 0.9;
}
.featured-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}
.featured-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 238, 226, 0.75);
}
.featured-card-title {
  margin-top: auto;
  margin-bottom: auto;
}
.featured-card-title h3 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 65px);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.035em;
  transform: translateY(12px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-card-small .featured-card-title h3 {
  font-size: clamp(32px, 3vw, 48px);
}
.featured-card-link:hover .featured-card-title h3 {
  transform: translateY(0);
}
.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(244, 238, 226, 0.28);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(244, 238, 226, 0.65);
}
.featured-grid::after {
  content: "SELECTED FRAMES";
  position: absolute;
  right: -55px;
  bottom: 20px;
  color: rgba(244, 238, 226, 0.16);
  font-size: 7px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}
@media (max-width: 1100px) {
  .featured-container {
    width: calc(100% - 60px);
    padding: 110px 0 120px;
  }
  .featured-header {
    gap: 60px;
  }
  .featured-card-large {
    height: 590px;
  }
  .featured-card-small {
    height: 460px;
    margin-top: 90px;
  }
  .featured-card-small:nth-child(3) {
    margin-top: 180px;
  }
  .featured-card-content {
    padding: 20px;
  }
  .featured-card-title h3 {
    font-size: clamp(35px, 4.5vw, 52px);
  }
}
@media (max-width: 767px) {
  .featured-container {
    width: calc(100% - 40px);
    padding: 85px 0 95px;
  }
  .featured-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
    padding-bottom: 55px;
  }
  .featured-header-left .section-index {
    margin-bottom: 28px;
  }
  .featured-header-left h2 {
    font-size: clamp(58px, 15vw, 90px);
  }
  .featured-header-right {
    max-width: 370px;
    margin: 0;
  }
  .featured-header-right p {
    font-size: 10px;
    line-height: 1.8;
  }
  .featured-view-link {
    margin-top: 24px;
  }
  .featured-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .featured-card-large {
    width: 100%;
    height: 125vw;
    max-height: 620px;
  }
  .featured-card-small,
  .featured-card-small:nth-child(3) {
    width: 82%;
    height: 105vw;
    max-height: 500px;
    margin-top: 0;
  }
  .featured-card-small:nth-child(3) {
    align-self: flex-end;
  }
  .featured-card-title h3,
  .featured-card-small .featured-card-title h3 {
    font-size: clamp(38px, 11vw, 58px);
  }
  .featured-grid::after {
    display: none;
  }
}
@media (max-width: 420px) {
  .featured-container {
    width: calc(100% - 34px);
  }
  .featured-header-left h2 {
    font-size: 56px;
  }
  .featured-card-large {
    height: 125vw;
  }
  .featured-card-small,
  .featured-card-small:nth-child(3) {
    width: 88%;
    height: 110vw;
  }
  .featured-card-content {
    padding: 17px;
  }
  .featured-card-meta,
  .featured-card-footer {
    font-size: 6px;
  }
}
