/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Default GeneratePress child theme
Author: Tom Usborne
Author URI: https://tomusborne.com
Template: generatepress
Version: 0.1
*/

/* Black background only for ultra-wide screens (adds visual frame beyond content) */
@media (min-width: 1921px) {
  body {
    background-color: #000;
  }
}


/* Fix white background in ACF WYSIWYG editor (inside iframe) */
body.wp-admin .acf-editor-wrap iframe {
  background-color: #fff !important;
}

/* Site Wrapper */
.site-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Aspect Ratios */
.ar-16-9 { aspect-ratio: 16/9; }
.ar-9-16 { aspect-ratio: 9/16; }
.ar-4-3 { aspect-ratio: 4/3; }
.ar-3-4 { aspect-ratio: 3/4; }
.ar-1-1 { aspect-ratio: 1/1; }

/* Responsive images in content */
.dynamic-entry-content img,
.dynamic-entry-content .wp-block-image img,
.dynamic-entry-content img.gb-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  padding: 1em 0;
}

/* Responsive image override for mobile */
@media (max-width: 767px) {
  .dynamic-entry-content img,
  .dynamic-entry-content .wp-block-image img,
  .dynamic-entry-content img.gb-image {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

/* Base Table Styling */
.dynamic-entry-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin: 1rem 0;
  table-layout: auto;
}

.dynamic-entry-content th,
.dynamic-entry-content td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.dynamic-entry-content thead {
  background-color: #373B7D;
  color: #fff;
}

.dynamic-entry-content tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Responsive Table (mobile first) */
@media (max-width: 767px) {
  .dynamic-entry-content table,
  .dynamic-entry-content tbody,
  .dynamic-entry-content tr {
    display: block;
    width: 100%;
  }

  .dynamic-entry-content thead {
    display: none;
  }

  .dynamic-entry-content td {
    display: block;
    width: 100%;
    padding: 0.5rem;
    border-top: 1px solid #ddd;
  }

  .dynamic-entry-content td:first-child {
    font-weight: bold;
    background-color: #f9f9f9;
    padding-top: 0.5rem;
    border: none;
  }

  .dynamic-entry-content td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    color: #373B7D;
  }
}

/* Table/Accordion Switch (Mobile vs Desktop) */
@media (max-width: 1024px) {
  .unresponsive-table { display: none !important; }
  .responsive-accordion { display: block !important; }
}

@media (min-width: 1025px) {
  .unresponsive-table { display: table !important; }
  .responsive-accordion { display: none !important; }
}

/* Accessibility: Visually Hidden */
.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Fix: Remove orphaned/misnested rule that broke CSS (seen in prior version) */
/* Removed extra closing brackets and duplicate .dynamic-entry-content rules */

/* Typography Resets */
.no-ul, .no-ul a {
  text-decoration: none;
}

.no-ul a:hover {
  text-decoration: underline;
}

.gb-container p:last-child:last-of-type {
  margin-bottom: 0;
}

.block-editor-block-list__layout .gb-container p:nth-last-child(2) {
  margin-bottom: 0;
}

h1, h2, h3, h4 {
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}

ul {
  padding-top: 0;
  margin-left: 30px;
}

li {
  padding-left: 0;
}

ol li {
  margin: .5em 0;
  line-height: 1.4em;
}

ul li {
  margin: 0.8rem 0;
  line-height: 1.4em;
}

button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
}
.read-more.button {
  background-image: radial-gradient(rgb(247, 217, 119) 22%, rgb(232, 197, 97) 69%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 1px solid var(--contrast-2);
  color: var(--contrast);
  display: inline-block;
  font-family: "lovestory serif", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 1rem 2rem;
  text-transform: capitalize;
}

.read-more.button:hover {
  background-image: linear-gradient(to left, var(--contrast-2) 0%, var(--contrast-2) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 8px 0 10px 2px rgba(0, 0, 0, 0.1);
  color: var(--global-color-8);
  transition: all 0.5s ease;
}

article.post .inside-article {
  margin: 0 0 2px;
  padding-top: 0;
}

article.post .entry-summary {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}

.dynamic-entry-content {
  font-size: 1.125rem;
  line-height: 1.5;
}

.wp-block-separator.has-text-color.has-global-color-8-color.has-alpha-channel-opacity.has-global-color-8-background-color.has-background.is-style-dots {
  margin: 10px 0;
}

.gb-container.gb-container-5b7934e1 {}

.space-between .gb-container > .gb-inside-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

ol.td-arrow-list li,
ul.td-arrow-list li {
  line-height: 1.2;
  margin-bottom: 0.75em;
}

.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style {
  background-image: radial-gradient(rgb(247, 217, 119) 22%, rgb(232, 197, 97) 69%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 1px solid var(--contrast-2);
  color: var(--contrast);
  display: inline-block;
  font-family: "lovestory serif", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 1rem 2rem;
  text-transform: capitalize;
}

.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style:hover {
  background: var(--contrast);
  color: var(--global-color-8);
  border: none;
  box-shadow: 8px 0 10px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.header-button {
  line-height: 1em;
}

.gb-headline.italic-style {
  font-style: italic;
}
/* Hide .nav-buttons in the main menu on smaller screens (up to 588px) */
@media (max-width: 588px) {
  .gb-container.nav-buttons {
    display: none;
  }

  .nav-mobile-only {
    background-color: var(--contrast);
    border: none;
    box-shadow: 8px 7px 14px 1px rgba(0, 0, 0, 0.1);
    display: inline-block;
  }

  .nav-mobile-only a {
    color: #fff !important;
    text-decoration: none;
    font-family: "lovestory serif", serif;
    font-size: 1.25em;
    font-weight: 400;
  }

  .nav-mobile-only a:hover {
    color: #E8C561;
  }

  #primary-menu ul li a:hover {
    border-bottom: none;
  }
}


}
/* Control sticky logo size */
 .gb-container.nav-buttons{
  max-height: 60px !important; /* Adjust up or down as needed */
  transition: max-height 0.3s ease;
}

/* Align sticky nav with site content */
nav.main-navigation.is_stuck {
  max-width: 1920px; /* matches your site layout */
  margin-inline: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
.sticky-navigation-logo {
  height: 75px;
  max-height: 75px;
  transition: max-height 0.3s ease, height 0.3s ease;
}
/* Style the login button to match the primary menu buttons */
.login-button a {
  font-family: var(--gp-font--lato);
  font-weight: 400;
  line-height: 60px;
  text-align: left;
  background-color: var(--base-3);
  display: block;
  cursor: pointer;
  box-sizing: inherit;
  transition: line-height 300ms;
  text-decoration: none;
  color: var(--contrast-2);
  font-size: 1rem;
  text-transform: none;
  padding: 0 20px;
}

.login-button a:hover,
.login-button a:focus,
.login-button a:active {
  color: var(--contrast);
  border-bottom: 2px solid rgb(232, 197, 97);
}

/* Show .nav-buttons and hide .nav-mobile-only on larger screens (from 589px) */
@media (min-width: 589px) {
  .nav-mobile-only {
    display: none;
  }

  #primary-menu ul li a:hover {
    border-bottom: 2px solid #E8C561;
  }

  #primary-menu ul li.current-menu-item a {
    border-bottom: none;
  }
}

/* Side Nav Menu Styles */
.slideout-menu li {
  border-bottom: 1px solid #E2E4F1;
  margin: 0;
  padding: 8px 0;
}

.nav-mobile-only li:last-child {
  border-bottom: none;
}

.slideout-menu li a {
  font-size: 1.25em;
}

/* Case Study Table */
.case-study-table {
  margin: auto;
  border-collapse: collapse;
  font-family: Lato, sans-serif;
}

.case-study-table th {
  padding: 10px;
  background-color: #4A53A4;
  color: white;
}

.case-study-table td {
  padding: 10px;
  line-height: 1.6;
}

.case-study-table th[scope="row"] {
  text-align: left;
  vertical-align: top;
  font-weight: bold;
}

.case-study-table td br {
  margin-top: 10em; /* Kind of wild — maybe revisit this later */
}

/* Page spacing fixes */
.page-id-6659 .site-content,
.page-id-6669 .site-content {
  margin-top: -20px;
}

#usercentrics-psl {
  color: white;
}
/* Pricing Table Styles */
.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: Lato, sans-serif;
  table-layout: fixed;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  padding: 10px;
  border: 1px solid #ddd;
  width: 25%;
}

.pricing-table thead {
  background-color: #373B7D;
  color: white;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #F2F2F2;
}

.pricing-table .checkmark {
  color: #4A53A4;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  unicode-bidi: isolate;
}

.pricing-table tfoot {
  background-color: transparent;
}

.pricing-table .pricing td {
  font-weight: bold;
}

.pricing-table th[scope="row"],
.pricing-table td:first-child {
  text-align: left;
  padding-left: 10px;
}
/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #373B7D;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #4C4F99;
}

/* Styling Filters Everything */
#filter-container span.wpc-filter-label-wrapper {   
	background-blend-mode: normal;
    background-image: radial-gradient(rgb(247,217,119) 22%,rgb(232,197,97) 69%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--contrast);
    display: inline-block;
    font-family: lovestory serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px; 
margin-right: 20px;
    text-transform: capitalize
}

#filter-container span.wpc-filter-label-wrapper:hover {
 transition: color 0.5s ease 0s, background-image 0.5s ease 0s;
    border-width: 0px;
    border: none;
    background-image: linear-gradient(to left,var(--contrast-2) 0%,var(--contrast-2) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: normal;
    color: #ffffff !important;
}

span.wpc-term-count {
    color: var(--contrast);
	font-family: "lovestory serif";
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 23.4px;
	text-align: left;
	text-transform: capitalize;
	white-space: nowrap;
	display: inline-block;
	list-style: outside none none;
	cursor: pointer;
	box-sizing: inherit;
	word-wrap: break-word;
	margin: 0px 5px;
	opacity: 0.6;
}

span.wpc-term-count-value {
	color: var(--contrast);
	font-family: "lovestory serif";
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 23.4px;
	text-align: left;
	text-transform: capitalize;
	white-space: nowrap;
	list-style: outside none none;
	cursor: pointer;
	box-sizing: inherit;
	word-wrap: break-word;
}
span.wpc-term-count:hover {
    color: var(--contrast);
	font-family: "lovestory serif";
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 23.4px;
	text-align: left;
	text-transform: capitalize;
	white-space: nowrap;
	display: inline-block;
	list-style: outside none none;
	cursor: pointer;
	box-sizing: inherit;
	word-wrap: break-word;
	margin: 0px 5px;
	opacity: 0.6;
}

span.wpc-term-count-value:hover {
    color: #ffffff !important;
	font-family: "lovestory serif";
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 23.4px;
	text-align: left;
	text-transform: capitalize;
	white-space: nowrap;
	list-style: outside none none;
	cursor: pointer;
	box-sizing: inherit;
	word-wrap: break-word;
}
label {
    border: none !important;
    border-radius: 5px; /* Adjust as needed */
}

label:hover {
    border: none !important; /* Ensure no border on hover */
}
span.wpc-filter-label-wrapper a {
    color: var(--contrast); /* Normal state */
}

span.wpc-filter-label-wrapper a:hover {
    color: #ffffff !important; /* Hover state */
}
@media (max-width: 767px) {
  #filter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .wpc-filters-main-wrap .wpc-filters-section:not(.wpc-filter-terms-count-0) ul.wpc-filters-labels {
    justify-content: center !important;
  }
}


  #filter-container span.wpc-filter-label-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 10px auto !important;
    text-align: center;
  }

  #filter-container span.wpc-filter-label-wrapper a {
    display: block;
    width: 100%;
    text-align: center;
  }
}


/* Opt-in Form Button */
.Opt-In-Form-Button {
  background-color: var(--contrast);
  border-radius: 10px;
  border: 0 solid var(--global-color-9);
  box-shadow: 8px 7px 14px 1px rgba(0, 0, 0, 0.1);
  color: var(--base-3);
  display: inline-block;
  font-family: "lovestory serif", serif;
  font-size: 1.125rem;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  text-align: center;
  text-transform: capitalize;
}

.Opt-In-Form-Button:hover {
  background-image: radial-gradient(
    rgb(206, 164, 67) 0%,
    rgb(232, 197, 97) 100%,
    rgb(247, 217, 119) 0%
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: normal;
  transition: all 0.8s ease-out;
}

@media (max-width: 767px) {
  .Opt-In-Form-Button {
    font-size: 1.5rem;
    padding: 15px 40px;
  }
}

/* Blog Callout Box */
.blog-callout {
  background-color: #e2e4f1;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  max-width: 500px;
  font-weight: bold;
}
/* Mega Menu Styles */
@media (min-width: 769px) {
  nav .main-nav .mega-menu {
    position: static;
  }

  nav .main-nav .mega-menu > ul {
    position: absolute;
    width: 100%;
    left: 0 !important;
    display: flex;
    flex-wrap: wrap;
  }

  nav .main-nav .mega-menu > ul > li > a {
    font-weight: bold;
  }

  nav .main-nav .mega-menu > ul > li {
    display: inline-block;
    vertical-align: top;
    width: 25%;
  }

  nav .main-nav .mega-menu.mega-menu-col-2 > ul > li {
    width: 50%;
  }

  nav .main-nav .mega-menu.mega-menu-col-3 > ul > li {
    width: 33.3333%;
  }

  nav .main-nav .mega-menu.mega-menu-col-5 > ul > li {
    width: 20%;
  }

  nav .main-nav .mega-menu > ul > li:hover > a,
  nav .main-nav .mega-menu > ul > li:focus > a,
  nav .main-nav .mega-menu > ul > li[class*="current-"] > a,
  nav .main-nav .mega-menu ul ul {
    background-color: transparent !important;
    color: inherit;
  }

  nav .main-nav .mega-menu ul .sub-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    width: 100%;
    box-shadow: none;
    left: 0;
    height: auto;
    pointer-events: auto;
    transform: scale(1);
  }

  nav .main-nav .mega-menu ul.toggled-on .sub-menu {
    pointer-events: auto;
  }

  nav .main-nav .mega-menu .sub-menu .menu-item-has-children .dropdown-menu-toggle {
    display: none;
  }
}

/* Hide pagination on embedded YouTube */
.epyt-pagination {
  display: none !important;
}

/* Small Font Utility */
.font-sm {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 0.25em;
}

/* Featured Articles for The Edge */
.edge-featured-articles {
  padding: 2em 1em;
}

.edge-featured-articles h2 {
  font-family: 'Lovestory serif', serif;
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1.5em;
}

.edge-article {
  display: flex;
  align-items: center;
  padding: 1em 0;
  border-top: 1px solid var(--base-2);
  transition: background-color 0.3s ease;
}

.edge-article:last-child {
  border-bottom: 1px solid var(--base-2);
}

.edge-article:hover {
  background-color: var(--base-2);
}

.edge-article-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-right: 1em;
}

.edge-article-thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
}

.edge-article-content {
  font-family: 'Lato', sans-serif;
}

.edge-article-content a {
  color: var(--global-color-11);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 0.25em;
}

.edge-article-content a:hover {
  color: var(--global-color-12);
}

.edge-article-content span {
  font-size: 13px;
  color: #555;
  display: block;
}
/* Star Peeks Table Styling */
.star-peeks-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--contrast) !important;
}

.star-peeks-table th,
.star-peeks-table td {
  text-align: left;
  padding: 0.75em 1em;
  vertical-align: top;
}

.star-peeks-table thead th {
  background: transparent;
  font-weight: 600;
  color: var(--contrast) !important;
  font-size: 1rem;
  border: none;
}

.star-peeks-table tbody tr:first-child td {
  border-top: none;
}

.star-peeks-table .table-heading {
  font-family: 'Lovestory serif', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 0.5em;
  color: var(--contrast) !important;
  border: none;
}

/* Unstyled tables with transparent header */
.dynamic-entry-content table.unstyled-table thead {
  background-color: transparent;
  color: var(--contrast) !important;
}

/* Sparkle List */
.sparkle-list {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.25rem;
}

/* Oracle Lists */
.oracle-lists {
  margin-top: 0;
  margin-bottom: -0.8rem;
  line-height: 1.4em;
}

/* Section padding */
.how-to-use-oracle-cards {
  padding-left: 30px;
}
/* Search Block Styling */
.wp-block-search {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 8px;
  border-radius: 6px;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wp-block-search__input {
  width: 150px;
  padding: 4px 6px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.wp-block-search__button.wp-element-button {
  background-color: var(--contrast);
  border-radius: 10px;
  border: 0 solid var(--global-color-9);
  box-shadow: 8px 7px 14px 1px rgba(0, 0, 0, 0.1);
  color: var(--base-3);
  display: inline-block;
  font-family: "lovestory serif", serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  text-align: center;
  text-transform: capitalize;
}

.wp-block-search__button.wp-element-button:hover,
.wp-block-search__button.wp-element-button:focus {
  background-image: radial-gradient(rgb(206, 164, 67) 0%, rgb(232, 197, 97) 100%, rgb(247, 217, 119) 0%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: normal;
  transition: all 0.8s ease-out;
}

.wp-block-search__label {
  display: none;
}

@media (max-width: 767px) {
  .wp-block-search__button.wp-element-button {
    font-size: 1.1rem;
    padding: 15px 40px;
  }
}
/* CSS-Only Modal */
.modal-backdrop {
  display: flex;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  padding: 2em;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.modal-backdrop:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: #000;
  background: none;
  border: none;
}

/* Blog Quote Highlight Box */
.blog-quote {
  background: #f5f4fc;
  border: 2px dashed #6c68b3;
  border-left: 6px solid #282560;
  padding: 25px 30px;
  margin: 30px auto;
  border-radius: 12px;
  font-style: italic;
  font-size: 1.2em;
  color: #282560;
  position: relative;
  line-height: 1.7;
  max-width: 650px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(40, 37, 96, 0.08);
}

.blog-quote::before,
.blog-quote::after {
  content: "★";
  font-size: 1.5em;
  background: linear-gradient(135deg, #f5d76e, #e6b800, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
}

.blog-quote::before {
  top: 10px;
  left: 10px; /* was 15px, now a little closer to edge */
  padding-right: 5px; /* adds space between star and first letter */
}

.blog-quote::after {
  bottom: 10px;
  right: 15px;
}

.blog h2.entry-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .blog h2.entry-title {
    font-size: 1.5rem;
  }
}
