/* =========================
SEARCH PAGE
========================= */

.afisha-search-page{
  background:#fff;
  color:#111;
  padding:28px 0 56px;
}

.afisha-search-page__inner{
  width:min(100% - 40px, 1082px);
  margin:0 auto;
}

.afisha-search-page__hero{
  padding:0 0 28px;
  border-bottom:1px solid #ececec;
  margin-bottom:30px;
}

.afisha-search-page__eyebrow{
  margin-bottom:10px;
  font-size:12px;
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#8a8a8a;
  font-weight:700;
}

.afisha-search-page__title{
  margin:0 0 20px;
  font-family:"Tinos", Georgia, serif;
  font-size:clamp(30px, 3vw, 48px);
  line-height:1.06;
  font-weight:700;
  color:#111;
}

/* SEARCH FORM */
.afisha-search-page__form,
.afisha-search-page-form{
  max-width:620px;
  margin:0 0 28px;
}

.afisha-search-page__form .afisha-search-form,
.afisha-search-page-form .afisha-search-form{
  display:block;
  width:100%;
  margin:0;
}

.afisha-search-page__form .afisha-search-form__row,
.afisha-search-page-form .afisha-search-form__row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 104px;
  gap:0;
  width:100%;
  margin:0;
}

.afisha-search-page__form .afisha-search-form__input,
.afisha-search-page-form .afisha-search-form__input{
  width:100%;
  min-width:0;
  height:54px;
  padding:0 16px;
  border:1px solid #d8d8d8;
  border-right:0;
  border-radius:0;
  box-sizing:border-box;
  font-size:16px;
  background:#fff;
  color:#111;
}

.afisha-search-page__form .afisha-search-form__input:focus,
.afisha-search-page-form .afisha-search-form__input:focus{
  outline:none;
  border-color:#111;
}

.afisha-search-page__form .afisha-search-form__button,
.afisha-search-page-form .afisha-search-form__button{
  width:104px;
  min-width:104px;
  height:54px;
  margin:0;
  padding:0 16px;
  border:0;
  border-radius:0;
  background:#111;
  color:#fff;
  white-space:nowrap;
  cursor:pointer;
  transition:background .2s ease;
}

.afisha-search-page__form .afisha-search-form__button:hover,
.afisha-search-page-form .afisha-search-form__button:hover{
  background:var(--color-accent-red);
}

/* hide ajax dropdown on search results page */
.afisha-search-page .afisha-search-autocomplete{
  display:none !important;
}

/* results grid */
.afisha-search-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px 24px;
}

.afisha-search-card{
  display:flex;
  flex-direction:column;
  min-width:0;
}

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

.afisha-search-card__image img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.afisha-search-card__body{
  min-width:0;
}

.afisha-search-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-search-card__category a{
  color:var(--color-accent-red);
  text-decoration:none;
}

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

.afisha-search-card__title{
  margin:0 0 10px;
  font-family:"Tinos", Georgia, serif;
  font-size:24px;
  line-height:1.12;
  font-weight:700;
  letter-spacing:-0.01em;
}

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

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

.afisha-search-card__excerpt{
  font-size:15px;
  line-height:1.68;
  color:#555;
}

.afisha-search-page__pagination{
  margin-top:34px;
}

.afisha-search-page__pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  margin:0 6px 6px 0;
  padding:0 12px;
  border:1px solid #ddd;
  color:#111;
  text-decoration:none;
}

.afisha-search-page__pagination .page-numbers.current,
.afisha-search-page__pagination .page-numbers:hover{
  border-color:#111;
  background:#111;
  color:#fff;
}

.afisha-search-page__empty{
  font-size:17px;
  line-height:1.7;
  color:#555;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px){
  .afisha-search-page{
    padding:22px 0 44px;
  }

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

  .afisha-search-page__title{
    font-size:34px;
  }

  .afisha-search-page__form,
  .afisha-search-page-form{
    max-width:100%;
  }

  .afisha-search-page__form .afisha-search-form__row,
  .afisha-search-page-form .afisha-search-form__row{
    grid-template-columns:minmax(0, 1fr) 100px;
    gap:0;
  }

  .afisha-search-page__form .afisha-search-form__input,
  .afisha-search-page-form .afisha-search-form__input{
    height:48px;
    font-size:16px;
  }

  .afisha-search-page__form .afisha-search-form__button,
  .afisha-search-page-form .afisha-search-form__button{
    width:100px;
    min-width:100px;
    height:48px;
  }

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

  .afisha-search-card__image img{
    height:210px;
  }

  .afisha-search-card__title{
    font-size:21px;
  }
}

@media (max-width: 767px){
  .afisha-search-page__title{
    font-size:28px;
    line-height:1.08;
  }

  .afisha-search-page__form,
  .afisha-search-page-form{
    max-width:100%;
  }

  .afisha-search-page__form .afisha-search-form__row,
  .afisha-search-page-form .afisha-search-form__row{
    grid-template-columns:minmax(0, 1fr) 92px;
    gap:0;
  }

  .afisha-search-page__form .afisha-search-form__input,
  .afisha-search-page-form .afisha-search-form__input{
    height:44px;
    padding:0 14px;
    font-size:15px;
    border-radius:0;
  }

  .afisha-search-page__form .afisha-search-form__button,
  .afisha-search-page-form .afisha-search-form__button{
    width:92px;
    min-width:92px;
    height:44px;
    border-radius:0;
    font-size:14px;
  }

  .afisha-search-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .afisha-search-card__image img{
    height:auto;
  }

  .afisha-search-card__title{
    font-size:20px;
  }

  .afisha-search-card__excerpt{
    font-size:14px;
  }
}