[data-pagename="home"] .ipsType_medium:not(.ipsType_richText) {
  line-height: 1.4;
}

[data-pagename="home"]:not([data-pageid]):not([data-pageid=""]) .ipsAreaBackground {
  background: rgb(var(--theme-area_background));
  padding: 0;
}

[data-pagename="home"] .ipsBreadcrumb_top {
  display: none;
}

.ez-home {
  --ez-bg: #262320;
  --ez-bg-soft: #1a1915;
  --ez-text: #867866;
  --ez-text-strong: #fff;
  --ez-accent: #cd402b;
  --ez-accent-soft: #cd402bb0;
  --ez-rust-green: #6aa84f;
}

.ez-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(260px, 24vw, 320px);
  align-items: start;
  column-gap: clamp(28px, 3.5vw, 40px);
  row-gap: 16px;
}

@media (max-width: 960px) {
  .ez-hero-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

}

.ez-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.ez-card {
  background: radial-gradient(140% 120% at 100% 0, rgba(205,64,43,.12) 0, rgba(205,64,43,0) 60%), var(--ez-bg);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  position: relative;
}

.ez-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 8px 20px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.06);
}

.ez-video-card .ez-thumb {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.ez-video-card .ez-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ez-video-card .ez-play i {
  font-size: 44px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  background: rgba(0,0,0,.25);
  border-radius: 999px;
  padding: 10px 16px;
}

.ez-news-card .ez-news-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #000;
}

.ez-news-card .ez-news-body {
  padding: 12px;
}

.ez-news-title {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ez-news-excerpt {
  font-size: 11px;
  color: #d0c9c1;
  opacity: .9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ez-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
}

.ez-skel {
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.12), rgba(255,255,255,.06));
  background-size: 200% 100%;
  animation: ez-s 1.2s ease-in-out infinite;
  border-radius: 8px;
}

.ez-skel--ratio {
  aspect-ratio: 16/9;
  width: 100%;
}

.ez-skel--line {
  height: 12px;
  margin: 10px 12px;
  border-radius: 6px;
}

@keyframes ez-s {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }

}

.ez-news-datebar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 5px 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.ez-news-date {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.ez-news-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, var(--ez-accent, #cd402b), var(--ez-accent-soft, #cd402bb0));
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.25);
}

.ez-news-title {
  margin: 0 0 6px;
}

.ez-news-thumb {
  position: relative;
}

.ez-news-thumb::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events: none;
}

.ez-news-tag--devblog {
  background: linear-gradient(180deg, var(--ez-accent,#cd402b), var(--ez-accent-soft,#cd402bb0));
}

.ez-news-tag--community {
  background: linear-gradient(180deg, var(--ez-rust-green,#6aa84f), #5c9446);
  box-shadow: 0 2px 8px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.25);
}

.ez-topic-card {
  background: var(--ez-bg, #1a1915);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,.14), inset 0 0 0 1px rgba(255,255,255,.04);
}

.ez-topic-card + .ez-topic-card {
  margin-bottom: 18px;
}

.ez-topic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 8px 20px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.06);
}

.ez-topic-hero-link {
  position: relative;
  display: block;
}

.ez-topic-hero {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.ez-topic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 100% 0, rgba(205,64,43,.10), transparent 60%);
  pointer-events: none;
}

.ez-topic-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
  pointer-events: none;
}

.ez-topic-hero-link .ipsCommentCount.ez-topic-count {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  line-height: 1;
  padding: 6px 9px;
  min-width: 34px;
  text-align: center;
  background: linear-gradient(180deg, var(--ez-accent,#cd402b), var(--ez-accent-soft,#cd402bb0));
  box-shadow: 0 6px 14px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.12);
  border: 0;
}

.ez-topic-body {
  padding: 12px;
  background: var(--ez-bg-soft, #1a1915);
}

.ez-post-body {
  padding: 12px;
  background: #262320;
}

.ez-topic-titleline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ez-topic-title {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ez-topic-meta {
  font-size: 12px;
  color: var(--ez-text, #867866);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ez-topic-meta .ipsUserPhoto {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.ez-topic-card .ez-card-link {
  z-index: 1;
}

.ez-topic-card .ez-topic-body,
.ez-topic-card .ez-topic-body *,
.ez-topic-card .ez-topic-title,
.ez-topic-card .ez-topic-meta,
.ez-topic-card .ez-topic-meta a
{
  position: relative;
  z-index: 2;
}

.ez-hero-right .ez-topic-card {
  margin-bottom: 12px;
}

.ez-hero-right .ez-topic-hero {
  padding-bottom: 28.125% !important;
}

.ez-hero-right .ez-topic-count {
  top: 8px;
  right: 8px;
  font-size: 11px;
  padding: 5px 8px;
  min-width: 28px;
}

.ez-hero-right .ez-topic-body {
  padding: 10px 12px;
}

.ez-hero-right .ez-topic-title {
  margin: 2px 0 10px;
}

.ez-hero-right .ipsWidget_inner {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.ez-hero-left .ez-card-grid + .ez-card-grid {
  margin-top: 40px;
}

@media (max-width: 720px) {
  .ez-hero-left .ez-card-grid + .ez-card-grid {
    margin-top: 24px;
  }

}

.ez-side-skel-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #1a1915;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  pointer-events: none;
}

.ez-side-skel-overlay .ez-skel-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.03);
  background: var(--ez-bg, #1a1915);
}

.ez-side-skel-overlay .ez-skel-lines {
  padding: 12px;
}
