.mc-editorial {
  display: flex;
  gap: 18px;
  width: 100%;
  height: 920px;
  background: var(--mc-bg);
  padding: 40px 80px;
  overflow: hidden;
}

.mc-editorial__tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.mc-editorial__tile:hover .mc-editorial__img {
  transform: scale(1.015);
}

.mc-editorial__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mc-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 38, 35, 0.25) 0%,
    rgba(43, 38, 35, 0.0) 50%
  );
  pointer-events: none;
  z-index: 1;
}

.mc-editorial__label {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-family: var(--mc-font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF;
  z-index: 2;
}

.mc-editorial__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: var(--mc-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mc-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: transform 0.2s ease;
}

.mc-editorial__tile:hover .mc-editorial__arrow {
  transform: translateX(4px);
}

.mc-editorial__tile--hero {
  width: calc(50% - 9px);
  height: 100%;
}

.mc-editorial__right {
  width: calc(50% - 9px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mc-editorial__tile--wide {
  height: calc(50% - 9px);
}

.mc-editorial__bottom {
  display: flex;
  gap: 18px;
  height: calc(50% - 9px);
}

.mc-editorial__tile--small {
  width: calc(50% - 9px);
  height: 100%;
}

@media (max-width: 768px) {
  .mc-editorial {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
  .mc-editorial__tile--hero {
    width: 100%;
    height: 360px;
  }
  .mc-editorial__right {
    width: 100%;
  }
  .mc-editorial__tile--wide {
    height: 260px;
  }
  .mc-editorial__bottom {
    height: 260px;
  }
  .mc-editorial__label {
    font-size: 18px;
    line-height: 24px;
    left: 16px;
    bottom: 16px;
  }
  .mc-editorial__arrow {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
  .mc-editorial__arrow svg {
    width: 18px;
    height: 18px;
  }
}
