/* =============================================
   GUIDES INDEX — MOBILE BASE STYLES
   ============================================= */

/* Promo Bar */
.promo_bar {
  background-color: rgb(24, 24, 24);
  padding: 10px 0;
}
.promo_bar .wrap {
  margin: 0 20px;
}
.promo_bar p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.promo_bar p strong {
  color: rgb(255, 255, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.promo_bar p a {
  color: rgb(130, 180, 255);
  text-decoration: none;
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
.promo_bar p a:hover {
  color: rgb(255, 255, 255);
}

/* Guides Hero */
.guides_hero {
  background-image: url("../images/hero_bg.webp");
  background-size: cover;
  color: rgb(255, 255, 255);
  padding: 60px 0;
  position: relative;
}
.guides_hero:before {
  content: "";
  display: block;
  background-color: rgba(3, 70, 255, 0.92);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.guides_hero .wrap {
  margin: 0 20px;
  position: relative;
  z-index: 2;
}
.guides_hero .wrap h1 {
  font-size: 2rem;
  line-height: 1.15;
  color: rgb(255, 255, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 12px 0;
}
.guides_hero .wrap p {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.85;
}

/* Featured Guide */
.guides_featured {
  margin: 50px 0 0 0;
}
.guides_featured .wrap {
  margin: 0 20px;
}
.guides_featured .featured_label {
  margin: 0 0 16px 0;
}
.guides_featured .featured_label span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(3, 70, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.guides_featured .featured_card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgb(3, 70, 255);
  -webkit-transition: transform 300ms ease, box-shadow 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.guides_featured .featured_card:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(3, 70, 255, 0.25);
}
.guides_featured .featured_card .featured_card_canvas {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: rgb(2, 55, 200);
}
.guides_featured .featured_card .featured_card_canvas canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.guides_featured .featured_card .featured_card_content {
  padding: 28px;
}
.guides_featured .featured_card .featured_card_content .card_tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin: 0 0 12px 0;
}
.guides_featured .featured_card .featured_card_content h2 {
  font-size: 1.375rem;
  line-height: 1.25;
  color: rgb(255, 255, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 12px 0;
}
.guides_featured .featured_card .featured_card_content p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px 0;
}
.guides_featured .featured_card .featured_card_content .read_link {
  font-size: 0.875rem;
  color: rgb(255, 255, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}
.guides_featured .featured_card:hover .read_link {
  opacity: 0.85;
}

/* All Guides Grid */
.guides_grid_section {
  margin: 60px 0 0 0;
}
.guides_grid_section .wrap {
  margin: 0 20px;
}
.guides_grid_section .wrap > header {
  margin: 0 0 25px 0;
}
.guides_grid_section .wrap > header h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(3, 70, 255);
  margin: 0 0 10px 0;
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.guides_grid_section .wrap > header h2 {
  font-size: 1.375rem;
  line-height: 1.2;
  color: rgb(56, 56, 56);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.guides_grid .guide_card {
  background-color: rgb(247, 247, 247);
  border-radius: 6px;
  padding: 28px;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 200ms ease, transform 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease;
}
.guides_grid .guide_card:hover {
  background-color: rgb(240, 240, 248);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.guides_grid .guide_card + .guide_card {
  margin: 12px 0 0 0;
}
.guides_grid .guide_card .card_tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgb(3, 70, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin: 0 0 10px 0;
}
.guides_grid .guide_card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  color: rgb(56, 56, 56);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 10px 0;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
.guides_grid .guide_card:hover h3 {
  color: rgb(3, 70, 255);
}
.guides_grid .guide_card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgb(99, 99, 99);
  margin: 0 0 14px 0;
}
.guides_grid .guide_card .card_meta {
  font-size: 0.8125rem;
  color: rgb(150, 150, 150);
  margin: 0;
}
