/* filepath: /style/custom.css */
.moli-header img {
    width: 320px;
    height: 180px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.game-news-section {
  background: #fff;
  border-radius: 20px;
  padding: 24px 24px 16px 24px;
  margin: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #2196f3;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.section-title .icon {
  font-size: 28px;
  margin-right: 8px;
}
.game-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.news-item {
  background: #222;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.news-item-large {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  min-height: 460px;
}
.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.3s;
}
.news-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.news-item:hover img {
  transform: scale(1.05);
}
.news-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding: 18px 16px 12px 16px;
  background: linear-gradient(180deg,rgba(0,0,0,0) 60%,rgba(0,0,0,0.7) 100%);
  border-radius: 0 0 20px 20px;
  margin-top: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}