/* =========================
HOMEPAGE HERO
========================= */

.afisha-homepage{
  background:#fff;
}

.afisha-home-hero{
  background:#fff;
  padding:48px 0 28px;
}

.afisha-home-hero__shell{
  width:min(100% - 40px, var(--grid-max));
  margin:0 auto;
}

.afisha-home-hero__grid{
  width:100%;
  max-width:1082px;
  margin:0 auto;
  display:grid;
  grid-template-columns:220px minmax(0, 1fr) 220px;
  gap:24px;
  align-items:start;
}

.afisha-home-hero__left,
.afisha-home-hero__featured,
.afisha-home-hero__right{
  min-width:0;
}

/* cards */
.afisha-home-hero-card{
  min-width:0;
}

.afisha-home-hero-card__image{
  display:block;
  margin-bottom:12px;
  overflow:hidden;
  background:#f3f3f3;
}

.afisha-home-hero-card__image img{
  width:100%;
  display:block;
  object-fit:cover;
}

.afisha-home-hero-card__body{
  min-width:0;
}

/* left column */
.afisha-home-hero__left{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.afisha-home-hero-card--left{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.afisha-home-hero-card--left .afisha-home-hero-card__image img{
  height:170px;
}

.afisha-home-hero-card--left .afisha-home-hero-card__body{
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* featured column */
.afisha-home-hero__featured{
  display:flex;
}

.afisha-home-hero-card--featured{
  display:flex;
  flex-direction:column;
  width:100%;
}

.afisha-home-hero-card--featured .afisha-home-hero-card__image{
  margin-bottom:14px;
}

.afisha-home-hero-card--featured .afisha-home-hero-card__image img{
  height:400px;
}

.afisha-home-hero-card--featured .afisha-home-hero-card__body{
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1 1 auto;
}

/* right column */
.afisha-home-hero__right{
  display:grid;
  gap:16px;
  align-self:start;
}

.afisha-home-hero-card--right{
  padding:0;
}

.afisha-home-hero-card--right .afisha-home-hero-card__body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:100%;
}

.afisha-home-hero-card--right + .afisha-home-hero-card--right{
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.08);
}

/* category */
.afisha-home-hero-card__category{
  margin-bottom:8px;
  font-size:12px;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--color-accent-red);
  font-weight:700;
}

.afisha-home-hero-card__category a{
  color:var(--color-accent-red);
  text-decoration:none;
}

.afisha-home-hero-card__category a:hover{
  color:var(--color-accent-red-dark);
}

/* titles */
.afisha-home-hero-card__title{
  margin:0;
  font-family:"Tinos", Georgia, serif;
  font-size:17px;
  line-height:1.18;
  font-weight:700;
  letter-spacing:-0.01em;
  color:#111;
}

.afisha-home-hero-card__title a{
  color:#111;
  text-decoration:none;
}

.afisha-home-hero-card__title a:hover{
  color:var(--color-accent-red);
}

.afisha-home-hero-card__title--featured{
  font-size:clamp(30px, 2.9vw, 44px);
  line-height:1.04;
  letter-spacing:-0.02em;
}

.afisha-home-hero-card__title--right{
  font-size:15px;
  line-height:1.25;
}

/* excerpts */
.afisha-home-hero-card__excerpt{
  color:#444;
}

.afisha-home-hero-card__excerpt--short{
  font-size:13px;
  line-height:1.5;
}

.afisha-home-hero-card__excerpt--featured{
  font-size:16px;
  line-height:1.68;
  max-width:100%;
}

/* read more */
.afisha-home-hero-card__readmore{
  margin:2px 0 6px;
}

.afisha-home-hero-card__readmore a,
.afisha-home-recommend-card__readmore a{
  font-size:11px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#999;
  text-decoration:none;
}

.afisha-home-hero-card__readmore a:hover,
.afisha-home-recommend-card__readmore a:hover{
  color:var(--color-accent-red);
}

/* ad below hero */
.afisha-home-hero__ad-slot{
  width:100%;
  max-width:1082px;
  margin:24px auto 0;
  padding-top:24px;
  border-top:1px solid #dcdcdc;
}

.afisha-home-hero__ad-placeholder{
  width:100%;
  min-height:120px;
  background:#e9e9e9;
  border:0;
}

/* hero responsive */
@media (max-width: 1280px){
  .afisha-home-hero__grid,
  .afisha-home-hero__ad-slot{
    max-width:1000px;
  }

  .afisha-home-hero__grid{
    grid-template-columns:210px minmax(0, 1fr) 210px;
    gap:20px;
  }

  .afisha-home-hero-card--featured .afisha-home-hero-card__image img{
    height:380px;
  }

  .afisha-home-hero-card--left .afisha-home-hero-card__image img{
    height:155px;
  }
}

@media (max-width: 991px){
  .afisha-home-hero{
    padding:28px 0 20px;
  }

  .afisha-home-hero__shell{
    width:min(100% - 24px, 100%);
  }

  .afisha-home-hero__grid,
  .afisha-home-hero__ad-slot{
    max-width:none;
  }

  .afisha-home-hero__grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .afisha-home-hero__left{
    gap:20px;
  }

  .afisha-home-hero__right{
    gap:18px;
  }

  .afisha-home-hero-card--featured .afisha-home-hero-card__image img,
  .afisha-home-hero-card--left .afisha-home-hero-card__image img{
    height:auto;
  }

  .afisha-home-hero-card__title--featured{
    font-size:34px;
  }
}

@media (max-width: 767px){
  .afisha-home-hero-card__title{
    font-size:17px;
  }

  .afisha-home-hero-card__title--featured{
    font-size:30px;
    line-height:1.06;
  }

  .afisha-home-hero-card__title--right{
    font-size:15px;
  }

  .afisha-home-hero-card__excerpt--featured{
    font-size:16px;
  }

  .afisha-home-hero-card--right{
    padding:0;
  }
}

/* =========================
HOMEPAGE INTEREST WIDGET
========================= */

.afisha-home-interest-widget{
  padding:24px 0 14px;
  background:#fff;
}

.afisha-home-interest-widget__inner{
  width:100%;
  max-width:1082px;
  margin:0 auto;
}

.afisha-home-interest-widget__header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:16px;
}


.afisha-home-interest-widget__title{
  margin:0;
  font-family:"Tinos", Georgia, serif;
  font-size:22px;
  line-height:1.15;
  font-weight:700;
  color:#111;
  white-space:nowrap;
}

.afisha-home-interest-widget__header::after{
  content:"";
  display:block;
  flex:1 1 auto;
  height:1px;
  background:#1a1a1a;
  opacity:.28;
}

.afisha-home-interest-widget__embed{
  width:100%;
}

.afisha-home-interest-widget__embed iframe,
.afisha-home-interest-widget__embed > div{
  max-width:100%;
}

.afisha-home-interest-widget__embed iframe{
  width:100%;
}

@media (max-width: 991px){
  .afisha-home-interest-widget{
    padding:20px 0 10px;
  }

  .afisha-home-interest-widget__inner{
    max-width:none;
  }

  .afisha-home-interest-widget__header{
    gap:12px;
  }

  .afisha-home-interest-widget__title{
    font-size:20px;
  }
}

/* =========================
HOMEPAGE MOST POPULAR
========================= */

.afisha-home-popular{
  padding:20px 0 20px;
  background:#fff;
}

.afisha-home-popular__inner{
  width:100%;
  max-width:1082px;
  margin:0 auto;
}

.afisha-home-popular__header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.afisha-home-popular__title{
  margin:0;
  font-family:"Tinos", Georgia, serif;
  font-size:22px;
  line-height:1.15;
  font-weight:700;
  color:#111;
  white-space:nowrap;
}

.afisha-home-popular__header::after{
  content:"";
  display:block;
  flex:1 1 auto;
  height:1px;
  background:#1a1a1a;
  opacity:.28;
}

.afisha-home-popular__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 26px;
}

.afisha-home-popular-card{
  display:grid;
  grid-template-columns:145px 1fr;
  gap:14px;
  align-items:start;
}

.afisha-home-popular-card__image{
  display:block;
  background:#f3f3f3;
  overflow:hidden;
}

.afisha-home-popular-card__image img{
  width:100%;
  height:92px;
  object-fit:cover;
  display:block;
}

.afisha-home-popular-card__category{
  margin-bottom:6px;
  font-size:10px;
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#8f8f8f;
}

.afisha-home-popular-card__category a{
  color:#8f8f8f;
  text-decoration:none;
}

.afisha-home-popular-card__category a:hover{
  color:var(--color-accent-red);
}

.afisha-home-popular-card__title{
  margin:0 0 6px;
  font-family:"Tinos", Georgia, serif;
  font-size:15px;
  line-height:1.24;
  font-weight:700;
  color:#111;
}

.afisha-home-popular-card__title a{
  color:#111;
  text-decoration:none;
}

.afisha-home-popular-card__title a:hover{
  color:var(--color-accent-red);
}

.afisha-home-popular-card__excerpt{
  font-size:12px;
  line-height:1.45;
  color:#555;
}

@media (max-width: 991px){
  .afisha-home-popular{
    padding:18px 0 14px;
  }

  .afisha-home-popular__inner{
    max-width:none;
  }

  .afisha-home-popular__grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width: 767px){
  .afisha-home-popular-card{
    grid-template-columns:110px 1fr;
    gap:12px;
  }

  .afisha-home-popular-card__image img{
    height:82px;
  }

  .afisha-home-popular__title{
    font-size:20px;
  }
}

/* =========================
HOMEPAGE STANDARD CATEGORY BLOCK
========================= */

.afisha-home-category-block{
  padding:34px 0 18px;
  background:#fff;
}

.afisha-home-category-block__inner{
  width:100%;
  max-width:1082px;
  margin:0 auto;
}

.afisha-home-category-block__header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.afisha-home-category-block__title{
  margin:0;
  font-family:"Tinos", Georgia, serif;
  font-size:24px;
  line-height:1.1;
  font-weight:700;
  color:#111;
  white-space:nowrap;
  order:1;
}

.afisha-home-category-block__header::after{
  content:"";
  display:block;
  flex:1 1 auto;
  height:1px;
  background:#1a1a1a;
  opacity:.22;
  order:2;
}

.afisha-home-category-block__view-all{
  order:3;
  margin-left:0;
  font-size:13px;
  line-height:1.3;
  color:#777;
  text-decoration:none;
  white-space:nowrap;
}

.afisha-home-category-block__view-all:hover{
  color:var(--color-accent-red);
}

/* layout */
.afisha-home-category-block__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.7fr) minmax(0, 0.95fr);
  gap:28px;
  align-items:start;
}

/* featured left */
.afisha-home-category-block__featured{
  min-width:0;
}

.afisha-home-category-featured-card__image{
  display:block;
  margin-bottom:14px;
  overflow:hidden;
  background:#f3f3f3;
}

.afisha-home-category-featured-card__image img{
  width:100%;
  height:395px;
  object-fit:cover;
  display:block;
}

.afisha-home-category-featured-card__category{
  margin:0 0 8px;
  font-size:11px;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--color-accent-red);
  font-weight:700;
}

.afisha-home-category-featured-card__title{
  margin:0 0 14px;
  font-family:"Tinos", Georgia, serif;
  font-size:22px;
  line-height:1.12;
  font-weight:700;
  letter-spacing:-0.01em;
  color:#111;
}

.afisha-home-category-featured-card__title a{
  color:#111;
  text-decoration:none;
}

.afisha-home-category-featured-card__title a:hover{
  color:var(--color-accent-red);
}

.afisha-home-category-featured-card__excerpt{
  max-width:720px;
  font-size:16px;
  line-height:1.82;
  color:#444;
  margin-top:8px;

  display:-webkit-box;
  -webkit-line-clamp:8;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* right column */
.afisha-home-category-block__list{
  display:flex;
  flex-direction:column;
  gap:20px;
  min-width:0;
  padding-top:2px;
}

.afisha-home-category-side-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height: 250px;
}

.afisha-home-category-side-card + .afisha-home-category-side-card{
  padding-top:22px;
  border-top:1px solid rgba(17,17,17,.10);
}

/* category on top */
.afisha-home-category-side-card__category{
  margin:0 0 8px;
  font-size:11px;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--color-accent-red);
  font-weight:700;
}

.afisha-home-category-side-card__category a{
  color:var(--color-accent-red);
  text-decoration:none;
}

.afisha-home-category-side-card__category a:hover{
  color:var(--color-accent-red-dark);
}

/* image below category */
.afisha-home-category-side-card__image{
  display:block;
  margin-bottom:10px;
  overflow:hidden;
  background:#f3f3f3;
}

.afisha-home-category-side-card__image img{
  width:100%;
  height:156px;
  object-fit:cover;
  display:block;
}

.afisha-home-category-side-card__body{
  min-width:0;
}

.afisha-home-category-side-card__title{
  margin:0 0 7px;
  font-family:"Tinos", Georgia, serif;
  font-size:17px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-0.01em;
  color:#111;
}

.afisha-home-category-side-card__title a{
  color:#111;
  text-decoration:none;
}

.afisha-home-category-side-card__title a:hover{
  color:var(--color-accent-red);
}

.afisha-home-category-side-card__excerpt{
  font-size:14px;
  line-height:1.72;
  color:#555;
  margin-top:4px;

  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.afisha-home-category-side-card__readmore{
  margin:0 0 8px;
}

.afisha-home-category-side-card__readmore a{
  font-size:11px;
  line-height:1.3;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#8a8a8a;
  text-decoration:none;
}

.afisha-home-category-side-card__readmore a:hover{
  color:var(--color-accent-red);
}

/* spacing between blocks */
.afisha-home-category-block + .afisha-home-category-block{
  padding-top:28px;
}

/* responsive */
@media (max-width: 1280px){
  .afisha-home-category-block__grid{
    grid-template-columns:minmax(0, 1.55fr) minmax(0, 1fr);
    gap:24px;
  }

  .afisha-home-category-featured-card__image img{
    height:360px;
  }

  .afisha-home-category-side-card__image img{
    height:146px;
  }
}

@media (max-width: 991px){
  .afisha-home-category-block{
    padding:28px 0 14px;
  }

  .afisha-home-category-block__inner{
    max-width:none;
  }

  .afisha-home-category-block__grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .afisha-home-category-featured-card__image img,
  .afisha-home-category-side-card__image img{
    height:auto;
  }

  .afisha-home-category-featured-card__excerpt{
    max-width:100%;
  }
}

@media (max-width: 767px){
  .afisha-home-category-block__title{
    font-size:20px;
  }

  .afisha-home-category-featured-card__title{
    font-size:19px;
  }

  .afisha-home-category-side-card__title{
    font-size:15px;
    margin:0 0 8px;
  }

  .afisha-home-category-featured-card__excerpt,
  .afisha-home-category-side-card__excerpt{
    font-size:12px;
  }
}

/* =========================
HOMEPAGE MID AD
========================= */

.afisha-home-mid-ad{
  padding:18px 0 12px;
  background:#fff;
}

.afisha-home-mid-ad__inner{
  width:100%;
  max-width:1082px;
  margin:0 auto;
}

/* =========================
HOMEPAGE RECOMMEND BLOCK
========================= */

.afisha-home-recommend-block{
  padding:34px 0 18px;
  background:#fff;
}

.afisha-home-recommend-block__inner{
  width:100%;
  max-width:1082px;
  margin:0 auto;
}

.afisha-home-recommend-block__header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.afisha-home-recommend-block__title{
  margin:0;
  font-family:"Tinos", Georgia, serif;
  font-size:24px;
  line-height:1.1;
  font-weight:700;
  color:#111;
  white-space:nowrap;
}

.afisha-home-recommend-block__header::after{
  content:"";
  display:block;
  flex:1 1 auto;
  height:1px;
  background:#1a1a1a;
  opacity:.22;
}

.afisha-home-recommend-block__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

.afisha-home-recommend-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  height:100%;
}

.afisha-home-recommend-card__image{
  display:block;
  margin-bottom:12px;
  overflow:hidden;
  background:#f3f3f3;
}

.afisha-home-recommend-card__image img{
  width:100%;
  height:148px;
  object-fit:cover;
  display:block;
}

.afisha-home-recommend-card__body{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  min-width:0;
}

.afisha-home-recommend-card__category{
  margin:0 0 8px;
  font-size:11px;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--color-accent-red);
  font-weight:700;
}

.afisha-home-recommend-card__category a{
  color:var(--color-accent-red);
  text-decoration:none;
}

.afisha-home-recommend-card__category a:hover{
  color:var(--color-accent-red-dark);
}

.afisha-home-recommend-card__title{
  margin:0 0 8px;
  font-family:"Tinos", Georgia, serif;
  font-size:16px;
  line-height:1.22;
  font-weight:700;
  color:#111;
}

.afisha-home-recommend-card__title a{
  color:#111;
  text-decoration:none;
}

.afisha-home-recommend-card__title a:hover{
  color:var(--color-accent-red);
}

.afisha-home-recommend-card__excerpt{
  font-size:13px;
  line-height:1.58;
  color:#555;

  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.afisha-home-recommend-card__readmore{
  margin-top:auto;
  padding-top:10px;
}

@media (max-width: 1280px){
  .afisha-home-recommend-block__grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:16px;
  }

  .afisha-home-recommend-card__image img{
    height:138px;
  }
}

@media (max-width: 991px){
  .afisha-home-recommend-block{
    padding:28px 0 14px;
  }

  .afisha-home-recommend-block__inner{
    max-width:none;
  }

  .afisha-home-recommend-block__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
  }

  .afisha-home-recommend-card__image img{
    height:160px;
  }
}

@media (max-width: 767px){
  .afisha-home-recommend-block__title{
    font-size:20px;
  }

  .afisha-home-recommend-block__grid{
    grid-template-columns:1fr;
  }

  .afisha-home-recommend-card__image img{
    height:auto;
  }

  .afisha-home-recommend-card__title{
    font-size:15px;
  }

  .afisha-home-recommend-card__excerpt{
    font-size:12px;
  }
}

/* =========================
HOMEPAGE SEO INTRO (REFINED)
========================= */

.afisha-home-seo-intro{
  padding: 18px 0 10px;
  background: #fff;
}

.afisha-home-seo-intro__inner{
  width: 100%;
  max-width: 900px; /* tighter for readability */
  margin: 0 auto;
}

/* H1 — smaller, more elegant */
.afisha-home-seo-intro__h1{
  margin:0 0 10px;
  font-family:"Tinos", Georgia, serif;

  font-size:clamp(24px, 2vw, 32px); /* slightly smaller */
  line-height:1.15;

  font-weight:700;
  letter-spacing:-0.01em;
  color:#111;

  white-space:nowrap;       /* 🚀 FORCE ONE LINE */
  overflow:hidden;
  text-overflow:ellipsis;   /* fallback if screen too small */
}

/* H2 — softer, more like supporting text */
.afisha-home-seo-intro__title{
  margin: 0 0 10px;
  font-family: "Tinos", Georgia, serif;
  font-size:18px;
  line-height:1.35;
  font-weight:500;
  color:#444;
}

/* Body text — cleaner + lighter */
.afisha-home-seo-intro__text{
  max-width: 720px;
  font-size:15px;
  line-height:1.7;
  color:#444;
}

.afisha-home-seo-intro__text p{
  margin: 0 0 12px;
}

.afisha-home-seo-intro__text p:last-child{
  margin-bottom: 0;
}

/* Links */
.afisha-home-seo-intro__text a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:2px;
  text-decoration-color:rgba(17,17,17,.3);
}

.afisha-home-seo-intro__text a:hover{
  color:var(--color-accent-red);
  text-decoration-color:var(--color-accent-red);
}

/* responsive */
@media (max-width: 991px){
  .afisha-home-seo-intro__inner{
    max-width:none;
  }

  .afisha-home-seo-intro__h1{
    white-space:normal;   /* allow wrapping on mobile */
    font-size:24px;
  }

  .afisha-home-seo-intro__title{
    font-size:16px;
  }

  .afisha-home-seo-intro__text{
    font-size:14px;
  }
}

/* =========================
HOMEPAGE SEO LINK ENHANCEMENTS
========================= */

/* Clickable block titles */
.afisha-home-category-block__title a,
.afisha-home-popular__title a,
.afisha-home-interest-widget__title a,
.afisha-home-recommend-block__title a{
  color:#111;
  text-decoration:none;
}

.afisha-home-category-block__title a:hover,
.afisha-home-popular__title a:hover,
.afisha-home-interest-widget__title a:hover,
.afisha-home-recommend-block__title a:hover{
  color:var(--color-accent-red);
}

/* Linked text inside homepage excerpts */
.afisha-home-popular-card__excerpt a,
.afisha-home-category-featured-card__excerpt a,
.afisha-home-category-side-card__excerpt a,
.afisha-home-recommend-card__excerpt a,
.afisha-home-seo-intro__text a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-color:rgba(17,17,17,.35);
}

.afisha-home-popular-card__excerpt a:hover,
.afisha-home-category-featured-card__excerpt a:hover,
.afisha-home-category-side-card__excerpt a:hover,
.afisha-home-recommend-card__excerpt a:hover,
.afisha-home-seo-intro__text a:hover{
  color:var(--color-accent-red);
  text-decoration-color:var(--color-accent-red);
}

/* Accessible focus states */
.afisha-homepage a:focus-visible{
  outline:2px solid var(--color-accent-red);
  outline-offset:2px;
}

/* Shared category link behavior */
.afisha-home-category-featured-card__category a,
.afisha-home-category-side-card__category a,
.afisha-home-recommend-card__category a,
.afisha-home-hero-card__category a,
.afisha-home-popular-card__category a{
  text-decoration:none;
}

.afisha-home-category-featured-card__category a:hover,
.afisha-home-category-side-card__category a:hover,
.afisha-home-recommend-card__category a:hover,
.afisha-home-hero-card__category a:hover,
.afisha-home-popular-card__category a:hover{
  color:var(--color-accent-red-dark);
}

/* =========================================================
AFISHA HOMEPAGE — MOBILE FIX RESTORE
Restore featured hero first + align lower sections
========================================================= */

@media (max-width: 991px){

  /* ---------------------------------
  1) HERO ORDER ON MOBILE/TABLET
  Main featured article must show first
  --------------------------------- */
  .afisha-home-hero__grid{
    display:flex !important;
    flex-direction:column !important;
    gap:22px !important;
  }

  .afisha-home-hero__featured{
    order:1 !important;
    width:100% !important;
  }

  .afisha-home-hero__left{
    order:2 !important;
    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    gap:20px !important;
  }

  .afisha-home-hero__right{
    order:3 !important;
    width:100% !important;
    display:grid !important;
    gap:18px !important;
  }

  .afisha-home-hero-card--featured{
    width:100% !important;
  }

  .afisha-home-hero-card--featured .afisha-home-hero-card__image img,
  .afisha-home-hero-card--left .afisha-home-hero-card__image img,
  .afisha-home-category-featured-card__image img,
  .afisha-home-category-side-card__image img,
  .afisha-home-popular-card__image img,
  .afisha-home-recommend-card__image img{
    width:100% !important;
    height:auto !important;
    object-fit:cover !important;
  }

  /* ---------------------------------
  2) KEEP ALL MAIN BLOCKS SAME WIDTH
  Below Viator should align with above
  --------------------------------- */
  .afisha-home-hero__shell,
  .afisha-home-interest-widget__inner,
  .afisha-home-seo-intro__inner,
  .afisha-home-popular__inner,
  .afisha-home-category-block__inner,
  .afisha-home-mid-ad__inner,
  .afisha-home-recommend-block__inner{
    width:min(100% - 24px, 100%) !important;
    max-width:none !important;
    margin:0 auto !important;
    box-sizing:border-box !important;
  }

  /* also keep outer sections from visually stretching */
  .afisha-home-interest-widget,
  .afisha-home-seo-intro,
  .afisha-home-popular,
  .afisha-home-category-block,
  .afisha-home-mid-ad,
  .afisha-home-recommend-block{
    overflow:hidden !important;
  }

  /* ---------------------------------
  3) LOWER LISTS CLEAN ON MOBILE
  --------------------------------- */
  .afisha-home-popular__grid,
  .afisha-home-category-block__grid,
  .afisha-home-recommend-block__grid{
    grid-template-columns:1fr !important;
  }

  .afisha-home-popular-card{
    grid-template-columns:110px 1fr !important;
    gap:12px !important;
  }

  .afisha-home-popular-card__image img{
    height:82px !important;
  }
}

@media (max-width: 767px){

  .afisha-home-hero{
    padding:24px 0 18px !important;
  }

  .afisha-home-hero__shell,
  .afisha-home-interest-widget__inner,
  .afisha-home-seo-intro__inner,
  .afisha-home-popular__inner,
  .afisha-home-category-block__inner,
  .afisha-home-mid-ad__inner,
  .afisha-home-recommend-block__inner{
    width:min(100% - 24px, 100%) !important;
  }

  .afisha-home-hero-card__title--featured{
    font-size:30px !important;
    line-height:1.06 !important;
  }

  .afisha-home-hero-card__excerpt--featured{
    font-size:16px !important;
  }

  .afisha-home-popular__title,
  .afisha-home-category-block__title,
  .afisha-home-recommend-block__title,
  .afisha-home-interest-widget__title{
    font-size:20px !important;
  }
}
