/*
Theme Name: Top Povar
Theme URI: https://example.com/
Author: Твой Ник
Author URI: https://example.com/
Description: Красивая и функциональная тема для сайта кулинарных рецептов.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: top-povar
Tags: recipes, food, blog, responsive
*/

html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #faf7f2;
  color: #222;
  margin: 0;
  padding: 0;
}

/* ВОЗВРАТ К КЛАССИЧЕСКОЙ ВЕРСТКЕ */
.container {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px;
  margin-bottom: 48px;
}
.recipe-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.recipe-card:hover {
  box-shadow: 0 6px 32px rgba(230,126,34,0.15);
}
.recipe-thumb {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3e9e0;
}
.recipe-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.recipe-img--placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1.2rem;
  background: #f3e9e0;
}
.recipe-card-content {
  padding: 20px 18px 18px 18px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.recipe-title {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  color: #e67e22;
}
.recipe-title a {
  color: inherit;
  text-decoration: none;
}
.recipe-title a:hover {
  text-decoration: underline;
}
.recipe-meta {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  gap: 18px;
}
.recipe-excerpt {
  color: #444;
  font-size: 1.05rem;
  margin: 0 0 8px 0;
  flex: 1 1 auto;
}
.no-recipes {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  color: #b8860b;
  margin: 32px 0;
}

.recipe-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #e67e22;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
}
.recipe-more-btn:hover {
  background: #cf711f;
}

header {
  background: #faf7f2;
  padding: 24px 0 16px 0;
  margin-bottom: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header a {
  color: #e67e22;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}
nav .main-menu {
  display: flex;
  gap: 32px;
  font-size: 1.1rem;
}
nav .main-menu li {
  list-style: none;
}
nav .main-menu a {
  color: #222;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
nav .main-menu a:hover {
  background: #f3e9e0;
  color: #e67e22;
}

main {
  flex: 1 1 0;
  min-width: 0;
}
aside {
  flex: 0 0 320px;
  width: 320px;
  min-height: 100vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
/* Убираем sticky у .widget-popular-posts, если был */
.widget-popular-posts {
  position: static !important;
}

.widget-popular-posts ul {
  padding: 0;
  margin: 0 0 16px 0;
  list-style: none;
}
.widget-popular-posts li {
  margin-bottom: 12px;
}
.widget-popular-posts a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
}
.widget-popular-posts a:hover {
  text-decoration: underline;
}

footer {
  background: #222;
  color: #fff;
  padding: 32px 0 16px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #e67e22;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  color: #e67e22;
}
footer .footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
footer .footer-socials a {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  color: #e67e22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}
footer .footer-socials a:hover {
  background: #e67e22;
  color: #fff;
}
footer .copyright {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9em;
  color: #bbb;
  width: 100%;
}

.widget-popular-posts {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(230,126,34,0.07);
  padding: 22px 18px 18px 18px;
  margin-bottom: 32px;
}
.widget-popular-posts .widget-title {
  font-size: 1.15rem;
  color: #e67e22;
  margin-bottom: 18px;
  font-weight: 600;
}
.popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f3e9e0;
  padding-bottom: 12px;
}
.popular-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.popular-thumb {
  display: block;
  min-width: 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3e9e0;
}
.popular-img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
}
.popular-img--placeholder {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.9rem;
  background: #f3e9e0;
}
.popular-info {
  flex: 1 1 auto;
  min-width: 0;
}
.popular-title {
  font-size: 1.02rem;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}
.popular-title:hover {
  color: #e67e22;
  text-decoration: underline;
}
.popular-meta {
  font-size: 0.95rem;
  color: #888;
  display: flex;
  gap: 12px;
}
.popular-rating {
  color: #e67e22;
  font-weight: 600;
}

/* Стили для других виджетов */
.widget {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(230,126,34,0.07);
  padding: 18px 16px 14px 16px;
  margin-bottom: 28px;
}
.widget-title {
  font-size: 1.08rem;
  color: #e67e22;
  margin-bottom: 14px;
  font-weight: 600;
}

.single-recipe {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 32px 28px 28px 28px;
  margin-bottom: 32px;
}
.single-recipe-thumb {
  margin-bottom: 22px;
}
.single-recipe-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(230,126,34,0.08);
}
.single-recipe-title {
  font-size: 2.1rem;
  margin: 0 0 16px 0;
  color: #e67e22;
  font-weight: 700;
}
.single-recipe-meta {
  font-size: 1.08rem;
  color: #888;
  margin-bottom: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.single-recipe-rating {
  color: #e67e22;
  font-weight: 600;
}
.single-recipe-content {
  color: #333;
  font-size: 1.13rem;
  line-height: 1.7;
}

.site-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #e67e22;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.site-logo .logo-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25em;
  color: #222;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.site-logo .logo-accent {
  color: #e67e22;
  margin-left: 2px;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo-svg-wrap {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}
.site-logo:hover .logo-svg-wrap {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 2px 8px #e67e22aa);
}
.site-logo .logo-svg {
  display: block;
}

.logo-slogan {
  font-size: 0.93rem;
  color: #d49a5a;
  font-weight: 400;
  margin-top: 2px;
  margin-left: 50px;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', Arial, sans-serif;
  opacity: 0.85;
  line-height: 1.2;
}

.pagination-nav {
  display: flex;
  justify-content: center;
  margin: 36px 0 0 0;
}
.pagination-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-nav li {
  display: inline-block;
}
.pagination-nav a, .pagination-nav span {
  display: inline-block;
  min-width: 36px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #fff;
  color: #e67e22;
  font-weight: 600;
  font-size: 1.08rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px rgba(230,126,34,0.07);
}
.pagination-nav a:hover {
  background: #e67e22;
  color: #fff;
}
.pagination-nav .current {
  background: #e67e22;
  color: #fff;
  pointer-events: none;
}

.hero-block {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat, linear-gradient(90deg, #fffbe6 0%, #faf7f2 100%);
  border-radius: 0 0 32px 32px;
  margin-top: 0 !important;
  margin-bottom: 38px;
  padding: 76px 0 64px 0;
  overflow: hidden;
}
.hero-block .hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: #222;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.hero-text {
  flex: 1 1 400px;
  min-width: 260px;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-shadow: 0 2px 12px #0002;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #ffe2c2;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 0;
  text-shadow: 0 1px 8px #0002;
}
.hero-img {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero-img {
    margin-top: 12px;
  }
}
@media (max-width: 600px) {
  .hero-block {
    padding: 32px 0 18px 0;
    border-radius: 0 0 18px 18px;
    min-height: 180px;
  }
  .hero-title {
    font-size: 1.25rem;
  }
  .hero-subtitle {
    font-size: 1.01rem;
  }
  .hero-img svg {
    width: 90px;
    height: 80px;
  }
}

@media (max-width: 900px) {
  .recipes-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  aside {
    margin-left: 0;
    margin-top: 32px;
    position: static;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .recipes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .recipe-thumb, .recipe-img, .recipe-img--placeholder {
    height: 160px;
  }
  .container {
    padding: 12px 4px;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .logo-slogan {
    font-size: 0.89rem;
    margin-left: 0;
    margin-top: 6px;
  }
} 

.promo-recipe-block {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(34,34,34,0.10);
}
.promo-recipe-overlay {
  position: absolute;
  inset: 0;
  background: #222;
  opacity: 0.65;
  z-index: 1;
}
.promo-recipe-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px 28px 36px;
  margin: 32px;
  max-width: 520px;
  box-shadow: 0 2px 24px rgba(230,126,34,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.promo-recipe-label {
  background: #e67e22;
  color: #fff;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 4px 16px;
  margin-bottom: 14px;
  display: inline-block;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.promo-recipe-label a {
  color: #fff;
  text-decoration: none;
}
.promo-recipe-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #222;
  line-height: 1.18;
}
.promo-recipe-desc {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.promo-recipe-meta {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 18px;
}
.promo-recipe-btn {
  display: inline-block;
  background: #7b3fe4;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 10px 28px;
  text-decoration: none;
  transition: background 0.18s;
  box-shadow: 0 2px 12px rgba(123,63,228,0.08);
}
.promo-recipe-btn:hover {
  background: #e67e22;
  color: #fff;
}
@media (max-width: 900px) {
  .promo-recipe-block {
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
  }
  .promo-recipe-content {
    margin: 18px;
    padding: 18px 12px 16px 12px;
    max-width: 100%;
  }
} 

/* --- PROMO БЛОК НА ШИРИНУ КОНТЕНТА --- */
.promo-recipe-fullwidth {
  width: 100%;
  max-width: 800px;
  margin: 36px auto;
  position: relative;
  min-height: 340px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(34,34,34,0.10);
}
.promo-recipe-fullwidth .promo-recipe-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.65;
  z-index: 1;
  border-radius: 18px;
}
@media (max-width: 900px) {
  .promo-recipe-fullwidth {
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
    margin: 18px 0;
    width: 100%;
    max-width: 100%;
  }
}

/* --- САЙДБАР СТАНОВИТСЯ STICKY --- */
/* Удаляю sticky для aside на десктопе */
/* @media (min-width: 901px) {
  aside {
    position: sticky;
    top: 32px;
    align-self: flex-start;
    height: fit-content;
  }
} */

.widget-top-choice {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(123,63,228,0.07);
  padding: 22px 18px 18px 18px;
  margin-bottom: 32px;
  text-align: center;
}
.top-choice-thumb {
  display: block;
  margin: 0 auto 12px auto;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 180px;
  height: 120px;
  background: #f3e9e0;
}
.top-choice-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.top-choice-img--placeholder {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1rem;
  background: #f3e9e0;
}
.top-choice-info {
  margin-top: 8px;
}
.top-choice-title {
  font-size: 1.08rem;
  color: #e67e22;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.2;
}
.top-choice-title:hover {
  text-decoration: underline;
}
.top-choice-btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.18s;
  margin-top: 6px;
}
.top-choice-btn:hover {
  background: #cf711f;
} 

.single-nav-blocks {
  margin: 48px 0 32px 0;
  display: flex;
  justify-content: center;
}
.single-nav-row {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 900px;
}
.single-nav-col {
  flex: 1 1 0;
  background: #fff;
  border: 2px solid #e6e8ea;
  border-radius: 16px;
  padding: 22px 24px 18px 24px;
  text-align: left;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single-nav-label {
  color: #e67e22;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.single-nav-link {
  color: #222;
  font-size: 1.13rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s;
}
.single-nav-link:hover {
  color: #e67e22;
}
.single-nav-arrow {
  color: #e67e22;
  font-size: 1.3em;
  font-weight: 700;
}
.single-related-block {
  margin: 56px 0 0 0;
  text-align: center;
}
.single-related-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: 0.01em;
  color: #222;
  position: relative;
  display: inline-block;
}
.single-related-title:after {
  content: '';
  display: block;
  margin: 8px auto 0 auto;
  width: 48px;
  height: 2px;
  background: #e6e8ea;
  border-radius: 2px;
}
.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-content: center;
  margin-top: 18px;
}
.single-related-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(230,126,34,0.07);
  padding: 12px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-related-thumb {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3e9e0;
  margin-bottom: 10px;
}
.single-related-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}
.single-related-img--placeholder {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1rem;
  background: #f3e9e0;
}
.single-related-title-link {
  color: #e67e22;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  display: block;
  text-align: center;
}
.single-related-title-link:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .single-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .single-nav-row {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .single-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .single-related-title {
    font-size: 1.3rem;
  }
} 

/* --- HERO GRID --- */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  margin: 32px auto 40px auto;
  max-width: 1200px;
  padding: 0 16px;
}
.hero-grid-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(34,34,34,0.13);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: box-shadow 0.2s;
}
.hero-grid-card:hover {
  box-shadow: 0 6px 32px rgba(230,126,34,0.15);
}
.hero-grid-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.hero-grid-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #222 80%, #2220 100%);
  opacity: 0.78;
  z-index: 1;
}
.hero-grid-card__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-grid-card__cat {
  background: #e67e22;
  color: #fff;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 4px 14px;
  margin-bottom: 12px;
  display: inline-block;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.hero-grid-card__title {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #fff;
  line-height: 1.18;
  text-shadow: 0 2px 12px #0002;
}
.hero-grid-card__desc {
  color: #ffe2c2;
  font-size: 1.08rem;
  margin-bottom: 14px;
  text-shadow: 0 1px 8px #0002;
}
.hero-grid-card__meta {
  font-size: 0.98rem;
  color: #ffe2c2;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 0;
}
.hero-grid-card__author {
  font-weight: 500;
}
.hero-grid-card__date {
  opacity: 0.85;
}
.hero-grid-card__link {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 10px;
  padding: 12px 32px;
  text-decoration: none;
  margin-top: 18px;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(230,126,34,0.13);
  letter-spacing: 0.01em;
}
.hero-grid-card__link:hover {
  background: #cf711f;
  box-shadow: 0 4px 18px rgba(230,126,34,0.18);
}
.hero-grid-card--main {
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
  min-height: 440px;
}
@media (max-width: 900px) {
  .hero-grid-card--main {
    min-height: 320px;
  }
  .hero-grid-card__content {
    padding: 18px 10px 14px 10px;
  }
}
@media (max-width: 600px) {
  .hero-grid-card, .hero-grid-card--main {
    min-height: 180px;
  }
  .hero-grid-card__content {
    padding: 10px 4px 8px 4px;
  }
  .hero-grid-card__title {
    font-size: 1.01rem;
  }
  .hero-grid-card__link {
    font-size: 0.98rem;
    padding: 8px 16px;
    margin-top: 10px;
  }
} 