/**
 * Trends Blogging — Newspaper child
 * Soft-rose review layout. Overrides Beauty demo pink/gold.
 */

:root {
  --tb-bg: #fefcfc;
  --tb-ink: #2b2426;
  --tb-muted: #5c5456;
  --tb-line: #e8e0e1;
  --tb-card: #f4f0f0;
  --tb-rose: #c45c6a;
  --tb-rose-dark: #9a3f4c;
  --tb-rose-soft: #f6edef;
  --tb-white: #fefefe;
  --tb-overlay: rgba(43, 36, 38, 0.62);
  --td_theme_color: #c45c6a;
}

html {
  scroll-behavior: smooth;
}

body.tb-child {
  background: var(--tb-bg);
  color: var(--tb-ink);
  font-family: Nunito, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body.tb-child img,
body.tb-child video,
body.tb-child iframe {
  max-width: 100%;
  height: auto;
}

body.tb-child .td-theme-wrap,
body.tb-child #td-outer-wrap {
  background: var(--tb-bg);
}

/* -------------------------------------------------------------------------
   Custom one-line header (header.php) — hide Newspaper header chrome
   ------------------------------------------------------------------------- */
body.tb-custom-header .tdc-header-wrap,
body.tb-custom-header .td-header-wrap,
body.tb-custom-header #td-mobile-nav,
body.tb-custom-header .td-menu-background,
body.tb-custom-header .td-scroll-up,
body.tb-custom-header #td-theme-settings {
  display: none !important;
}

.tb-site-header {
  background: #fff;
  border-bottom: 1px solid #ece8e6;
  position: relative;
  z-index: 50;
}
.tb-site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.tb-brand {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  color: #1c1917 !important;
  text-decoration: none !important;
  line-height: 1;
  white-space: nowrap;
  margin-right: auto;
}
.tb-brand:hover {
  color: #1c1917 !important;
}
.tb-nav-wrap {
  margin-left: auto;
}
.tb-nav {
  display: flex;
  align-items: center;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0;
}
.tb-nav > li {
  list-style: none !important;
  margin: 0 !important;
  position: relative;
}
.tb-nav > li > a {
  display: inline-block;
  padding: 26px 0 26px 28px;
  font-family: Jost, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #4a453f !important;
  text-decoration: none !important;
  line-height: 1;
  background: none !important;
}
.tb-nav > li > a:hover,
.tb-nav > li.current-menu-item > a,
.tb-nav > li.current-menu-ancestor > a,
.tb-nav > .current-menu-item > a {
  color: var(--tb-rose) !important;
}
.tb-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px;
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ece8e6;
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
  z-index: 60;
}
.tb-nav > li:hover > .sub-menu,
.tb-nav > li:focus-within > .sub-menu {
  display: block;
}
.tb-nav .sub-menu a {
  display: block;
  padding: 9px 16px;
  font-family: Jost, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a453f !important;
  text-decoration: none !important;
}
.tb-nav .sub-menu a:hover {
  color: var(--tb-rose) !important;
}
.tb-search-toggle {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  color: #1c1917;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.tb-search-toggle:hover {
  color: var(--tb-rose);
}
.tb-search-form {
  display: none;
  position: absolute;
  right: 32px;
  top: 100%;
  background: #fff;
  border: 1px solid #ece8e6;
  padding: 10px;
  z-index: 70;
}
.tb-search-form.is-open {
  display: block;
}
.tb-search-form input {
  border: 1px solid #ece8e6;
  padding: 8px 12px;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  width: 220px;
}
.tb-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.tb-nav-toggle span {
  display: block;
  height: 1.5px;
  width: 18px;
  background: #1c1917;
}

@media (max-width: 767px) {
  .tb-site-header-inner {
    padding: 0 16px;
    min-height: 60px;
  }
  .tb-nav-toggle {
    display: flex;
  }
  .tb-nav-wrap {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #ece8e6;
    padding: 8px 16px 16px;
  }
  body.tb-nav-open .tb-nav-wrap {
    display: block;
  }
  .tb-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .tb-nav > li > a {
    padding: 12px 0;
  }
}

/* -------------------------------------------------------------------------
   Single-row header: logo | links | search  (no Newspaper two-row gap)
   ------------------------------------------------------------------------- */
body.tb-child .td-header-top-menu-full,
body.tb-child .td-header-sp-top-widget,
body.tb-child .td-header-top-menu,
body.tb-child .td-login-modal,
body.tb-child .td-register-section,
body.tb-child #td-mobile-nav .td-menu-login,
body.tb-child .td-header-sp-recs,
body.tb-child .td-main-menu-logo,
body.tb-child .td-header-gradient:before {
  display: none !important;
}

body.tb-child .td-menu-background {
  display: none !important;
}
body.tb-child #td-mobile-nav {
  position: fixed !important;
  top: 0;
  right: 0;
  width: min(80%, 340px);
  height: 100%;
  visibility: hidden !important;
  overflow: auto;
  z-index: 100000;
  background: #fff;
  pointer-events: none;
  box-shadow: -8px 0 24px rgba(43, 36, 38, 0.08);
}
body.tb-child.td-menu-mob-open-menu #td-mobile-nav,
html.td-menu-mob-open-menu body.tb-child #td-mobile-nav {
  visibility: visible !important;
  pointer-events: auto;
}

body.tb-child .td-header-wrap,
body.tb-child .tdc-header-wrap,
body.tb-child .td-header-style-1 {
  background: #fff !important;
  border-bottom: 1px solid #ece6e6;
}

body.tb-child .td-header-style-1 {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px !important;
  min-height: 72px;
}
body.tb-child .td-header-style-1 > .td-container-wrap {
  width: auto !important;
  float: none !important;
}

body.tb-child .td-header-style-1 .td-banner-wrap-full,
body.tb-child .td-header-style-1 .td-logo-wrap-full,
body.tb-child .td-header-style-1 .td-header-header,
body.tb-child .td-header-style-1 .td-container.td-header-header {
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
}

body.tb-child .td-header-style-1 .td-header-sp-logo {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  line-height: 0;
}
body.tb-child .td-header-sp-logo img,
body.tb-child .td-main-logo img,
body.tb-child .td-header-wrap .td-main-logo img {
  max-height: 36px !important;
  width: auto !important;
  display: block;
}

body.tb-child .td-header-style-1 .td-header-menu-wrap-full,
body.tb-child .td-header-style-1 .td-header-menu-wrap,
body.tb-child .td-header-style-1 .td-header-main-menu,
body.tb-child .td-header-style-1 .td-container.td-header-main-menu {
  flex: 1 1 auto;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  background-image: none !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
}

body.tb-child .td-header-wrap .td-container {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

body.tb-child #td-header-menu {
  flex: 0 1 auto;
}

body.tb-child .td-header-wrap .sf-menu,
body.tb-child #td-header-menu .sf-menu,
body.tb-child ul.sf-menu {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  gap: 0;
}

body.tb-child .td-header-wrap .sf-menu > li,
body.tb-child ul.sf-menu > li {
  list-style: none !important;
  float: none !important;
  display: inline-flex !important;
  position: relative;
  margin: 0 !important;
}

body.tb-child .td-header-wrap .sf-menu > li > a,
body.tb-child ul.sf-menu > .td-menu-item > a {
  display: inline-flex !important;
  align-items: center;
  padding: 24px 0 24px 28px !important;
  margin: 0 !important;
  background: transparent !important;
  font-family: Jost, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #3a3334 !important;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1 !important;
  border: 0 !important;
}

body.tb-child .td-header-wrap .sf-menu > li > a:hover,
body.tb-child .td-header-wrap .sf-menu > .sfHover > a,
body.tb-child .td-header-wrap .sf-menu > .current-menu-item > a,
body.tb-child .td-header-wrap .sf-menu > .current-menu-ancestor > a,
body.tb-child .td-blog-beauty .td-header-style-1 .sf-menu > li > a:hover {
  color: var(--tb-rose) !important;
  background: transparent !important;
}

body.tb-child .td-header-wrap .sf-menu .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 12px;
  min-width: 220px;
  margin: 0 !important;
  padding: 10px 0 !important;
  list-style: none !important;
  background: #fff !important;
  border: 1px solid #ece6e6;
  box-shadow: 0 12px 30px rgba(43, 36, 38, 0.08);
  z-index: 200;
}
body.tb-child .td-header-wrap .sf-menu > li:hover > .sub-menu,
body.tb-child .td-header-wrap .sf-menu > li:focus-within > .sub-menu {
  display: block !important;
}
body.tb-child .td-header-wrap .sf-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
body.tb-child .td-header-wrap .sf-menu .sub-menu li {
  display: block !important;
  float: none !important;
}
body.tb-child .td-header-wrap .sf-menu .sub-menu a {
  display: block !important;
  padding: 9px 18px !important;
  font-family: Jost, sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #414141 !important;
  text-decoration: none !important;
  background: transparent !important;
}
body.tb-child .td-header-wrap .sf-menu .sub-menu a:hover {
  color: var(--tb-rose) !important;
}

body.tb-child .header-search-wrap {
  position: relative;
  flex: 0 0 auto;
  margin-left: 20px;
}
body.tb-child .td-drop-down-search {
  display: none !important;
}
body.tb-child .td-drop-down-search.tb-search-open {
  display: block !important;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 210;
  background: #fff;
  padding: 12px;
  border: 1px solid var(--tb-line);
}
body.tb-child #td-header-search-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #3a3334 !important;
}
body.tb-child #td-header-search-button .td-icon-search {
  font-size: 16px;
  color: #3a3334 !important;
}
body.tb-child #td-header-search-button-mob {
  display: none !important;
}

body.tb-child .td-header-menu-wrap.td-affix {
  box-shadow: none;
}

@media (min-width: 768px) {
  body.tb-child #td-top-mobile-toggle {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.tb-child .td-header-style-1 {
    padding: 10px 16px !important;
    min-height: 56px;
  }
  body.tb-child .td-header-wrap .sf-menu,
  body.tb-child ul.sf-menu {
    display: none !important;
  }
  body.tb-child #td-top-mobile-toggle {
    display: block !important;
  }
}

/* -------------------------------------------------------------------------
   Typography + theme color
   ------------------------------------------------------------------------- */
body.tb-child h1,
body.tb-child h2,
body.tb-child .td-post-template-default .td-post-header .entry-title,
body.tb-child .post .td-post-header .entry-title,
body.tb-child .td-page-header h1,
body.tb-child .td-category-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 700;
  color: var(--tb-ink);
}

body.tb-child h3,
body.tb-child h4,
body.tb-child .td-module-title,
body.tb-child .td_module_wrap .entry-title,
body.tb-child .block-title,
body.tb-child .td-block-title,
body.tb-child .wpb_tabs li a {
  font-family: Nunito, sans-serif !important;
}

body.tb-child a:hover {
  color: var(--tb-rose);
}

body.tb-child .td-post-category,
body.tb-child .td-module-meta-info .td-post-category,
body.tb-child .td-slide-meta .slide-meta-cat a,
body.tb-child .td-blog-beauty .td-module-meta-info .td-post-category,
body.tb-child .td-theme-slider:hover .slide-meta-cat a {
  background-color: var(--tb-rose) !important;
  color: #fff !important;
  font-family: Jost, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

body.tb-child .td-read-more a:hover,
body.tb-child .td-load-more-wrap a:hover,
body.tb-child .td-blog-beauty .td-read-more a:hover,
body.tb-child .td-blog-beauty .td-load-more-wrap a:hover,
body.tb-child #td-theme-settings .td-skin-buy a {
  background-color: var(--tb-rose) !important;
  border-color: var(--tb-rose) !important;
}

/* Recolor leftover Beauty gold */
body.tb-child .td-blog-beauty .td-header-style-11 .sf-menu > .current-menu-item > a,
body.tb-child .td-blog-beauty .td-module-meta-info .td-post-category,
body.tb-child .td-blog-beauty .td_block_5 .td-post-category {
  color: var(--tb-rose) !important;
}

/* -------------------------------------------------------------------------
   Modules → card look
   ------------------------------------------------------------------------- */
body.tb-child .td_module_wrap {
  background: #f1f1f1;
  transition: background-color 0.25s;
}

body.tb-child .td_module_wrap:hover {
  background: #e8e8e8;
}

body.tb-child .td_module_wrap .entry-title a {
  color: #414141 !important;
  font-weight: 400;
}

body.tb-child .td_module_wrap:hover .entry-title a {
  color: var(--tb-rose) !important;
}

body.tb-child .td-block-title-wrap .td-block-title,
body.tb-child .td-block-title-wrap .block-title span,
body.tb-child .td-block-title-wrap .block-title a {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--tb-ink) !important;
  text-transform: none !important;
}

/* Category archive header */
body.tb-child .td-category-header {
  padding-top: 28px;
}
body.tb-child .td-category-header .entry-title {
  font-size: 48px;
}

/* Single */
body.tb-child .td-post-content,
body.tb-child .tdb-block-inner,
body.tb-child .td-ss-main-content {
  font-size: 17px;
  color: #3a3334;
  line-height: 1.65;
}

body.tb-child .tb-article-meta {
  font-size: 14px;
  color: var(--tb-muted);
  margin: 0 0 1.25em;
}
body.tb-child .tb-article-meta strong {
  color: var(--tb-ink);
  font-weight: 600;
}
body.tb-child .tb-meta-sep {
  padding: 0 6px;
  color: var(--tb-line);
}

body.tb-child .td-post-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 30px;
  margin: 1.5em 0 0.5em;
}

body.tb-child .td-post-content a {
  color: var(--tb-rose-dark);
}

body.tb-child .td-post-content table {
  width: 100%;
  border-collapse: collapse;
}
body.tb-child .td-post-content table th {
  background: var(--tb-rose);
  color: #fff;
  font-family: Jost, sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 14px;
  text-align: left;
}
body.tb-child .td-post-content table td {
  border-bottom: 1px solid var(--tb-line);
  padding: 14px;
}

/* -------------------------------------------------------------------------
   Footer — hide broken social (# links) and Newspaper demo chrome
   ------------------------------------------------------------------------- */
body.tb-child #td-theme-settings,
body.tb-child .td-more-articles-box,
body.tb-child .td-footer-wrapper .footer-social-wrap,
body.tb-child .td-footer-template-13 .td-container {
  display: none !important;
}

body.tb-child .td-footer-wrapper,
body.tb-child .td-footer-template-13,
body.tb-child .td-sub-footer-container {
  background: var(--tb-white) !important;
  color: var(--tb-muted);
  box-shadow: none !important;
}

body.tb-child .td-sub-footer-container {
  border-top: 1px solid var(--tb-line);
  padding: 18px 32px !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.tb-child .td-sub-footer-container .td-pb-span {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

body.tb-child .td-sub-footer-copy,
body.tb-child .td-sub-footer-container a {
  color: var(--tb-muted) !important;
  font-family: Jost, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

body.tb-child .td-sub-footer-container a:hover {
  color: var(--tb-rose) !important;
}

/* -------------------------------------------------------------------------
   Shortcodes — hero
   ------------------------------------------------------------------------- */
.tb-hero {
  padding: 16px 24px 0;
  box-sizing: border-box;
}
.tb-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  height: 52vh;
  max-height: 560px;
  overflow: hidden;
  background: #2b2426;
}
.tb-hero-img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}
.tb-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 36, 38, 0.2), rgba(43, 36, 38, 0.45));
}
.tb-hero-copy {
  position: relative;
  z-index: 2;
  background: var(--tb-overlay);
  padding: 2.2rem 3rem;
  max-width: 47rem;
  text-align: center;
  color: #fefefe;
  margin: 24px;
}
.tb-hero-kicker {
  font-family: Nunito, sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fefefe;
  margin: 0 0 6px;
}
.tb-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(36px, 5vw, 58px) !important;
  color: #fefefe !important;
  margin: 0 0 12px !important;
  line-height: 1.1;
}
.tb-hero-text {
  color: #f3ecec;
  margin: 0 0 18px;
  font-size: 16px;
}
.tb-btn-ghost {
  display: inline-block;
  color: #fefefe !important;
  font-family: Jost, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #fefefe;
  padding-bottom: 4px;
}
.tb-btn-ghost:hover {
  color: #ffd9de !important;
  border-color: #ffd9de;
}

/* -------------------------------------------------------------------------
   Shortcodes — tiles
   ------------------------------------------------------------------------- */
.tb-tiles {
  padding: 18px 24px 8px;
  box-sizing: border-box;
}
.tb-tiles-row {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  width: 100%;
}
.tb-tile {
  width: auto;
  max-width: none;
  padding: 0;
  box-sizing: border-box;
}
.tb-tile a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  position: relative;
  overflow: hidden;
  background: #2b2426;
  text-decoration: none !important;
}
.tb-tile-img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.04);
  transition: filter 0.3s, transform 0.3s;
  opacity: 1 !important;
}
.tb-tile a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.tb-tile a:hover::after {
  opacity: 0.72;
}
.tb-tile a:hover .tb-tile-img {
  filter: grayscale(40%);
  transform: scale(1.08);
}
.tb-tile h4 {
  position: relative;
  z-index: 2;
  color: #fefefe !important;
  font-family: Jost, sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padbottom: 28px;
}
.tb-section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  color: var(--tb-ink) !important;
}
.tb-btn-line {
  font-family: Jost, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #414141 !important;
  border-bottom: 1px solid #414141;
  padding-bottom: 3px;
  text-decoration: none !important;
}
.tb-btn-line:hover {
  color: var(--tb-rose) !important;
  border-color: var(--tb-rose);
}

.tb-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}
.tb-card {
  width: auto;
  max-width: none;
  padding: 0;
  box-sizing: border-box;
}
.tb-card-hold {
  background: #f1f1f1;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  transition: background-color 0.25s;
}
.tb-card-hold:hover {
  background: #e8e8e8;
}
.tb-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e8e8;
}
.tb-card-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
}
.tb-term {
  background: var(--tb-rose);
  padding: 3px 8px;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  font-family: Jost, sans-serif;
}
.tb-card-content {
  padding: 24px 26px 28px;
}
.tb-card-content h3 {
  font-family: Nunito, sans-serif !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 1.35;
  margin: 0 !important;
  color: #414141;
}
.tb-card-hold:hover h3 {
  color: var(--tb-rose);
}
.tb-card-content p {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--tb-muted);
}

.tb-recent-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
.tb-short-card {
  width: auto;
  max-width: none;
  padding: 0;
  box-sizing: border-box;
}
.tb-short-hold {
  background: #f1f1f1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 110px;
  text-decoration: none !important;
  transition: background-color 0.25s;
}
.tb-short-hold:hover {
  background: #fefefe;
}
.tb-short-image {
  flex: 0 0 120px;
  width: 120px;
  min-height: 90px;
  overflow: hidden;
  background: #e8e8e8;
}
.tb-short-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
}
.tb-short-content {
  padding: 20px 22px;
  display: flex;
  align-items: center;
}
.tb-short-content h3 {
  font-family: Nunito, sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.35;
  margin: 0 !important;
  color: #414141;
}
.tb-short-hold:hover h3 {
  color: var(--tb-rose);
}

.tb-trending {
  background: var(--tb-rose-soft);
  margin: 12px 24px 36px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.tb-trending-lead {
  font-family: Jost, sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--tb-rose);
}
.tb-trending-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.tb-trending-items a {
  font-size: 14px;
  color: #414141 !important;
  border-bottom: 1px solid transparent;
  text-decoration: none !important;
}
.tb-trending-items a:hover {
  color: var(--tb-rose) !important;
  border-color: var(--tb-rose);
}

/* -------------------------------------------------------------------------
   Shortcodes — compare + product
   ------------------------------------------------------------------------- */
.tb-compare-wrap {
  overflow-x: auto;
  margin: 8px 0 28px;
}
.tb-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.tb-compare th {
  background: var(--tb-rose);
  color: #fff;
  font-family: Jost, sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  text-align: left;
  padding: 12px 14px;
}
.tb-compare td {
  border-bottom: 1px solid var(--tb-line);
  padding: 14px;
  vertical-align: middle;
}
.tb-compare tr:nth-child(even) td {
  background: var(--tb-rose-soft);
}
.tb-compare .tb-award {
  font-weight: 700;
  color: var(--tb-rose-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: Jost, sans-serif;
}

.tb-product {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--tb-line);
  margin-top: 28px;
}
.tb-product-media img {
  width: 100%;
  height: auto;
  background: var(--tb-card);
}
.tb-product-body {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.tb-product-body > *:not(.tb-pros):not(.tb-cons) {
  flex: 1 1 100%;
}
.tb-product-body h3 {
  font-family: Nunito, sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 0 0 0.2em !important;
}
.tb-pros,
.tb-cons {
  background: var(--tb-card);
  padding: 16px 18px;
  flex: 1 1 240px;
}
.tb-pros h4,
.tb-cons h4 {
  font-family: Jost, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px !important;
}
.tb-pros h4 { color: #3d7a55 !important; }
.tb-cons h4 { color: var(--tb-rose-dark) !important; }
.tb-pros ul,
.tb-cons ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

.tb-btn-amazon {
  display: inline-block;
  background: var(--tb-rose);
  color: #fff !important;
  text-decoration: none !important;
  font-family: Jost, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  margin-top: 6px;
}
.tb-btn-amazon:hover {
  background: var(--tb-rose-dark);
  color: #fff !important;
}

@media (max-width: 1100px) {
  .tb-tile {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 767px) {
  .tb-hero { padding: 12px 12px 0; }
  .tb-hero-slide { min-height: 340px; }
  .tb-hero-copy { padding: 1.6rem 1.1rem; margin: 16px; }
  .tb-hero-title { font-size: 32px !important; }
  .tb-tile {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tb-tile a { height: 120px; }
  .tb-tile h4 { font-size: 13px !important; }
  .tb-trending { margin: 0 12px 28px; padding: 14px; }
  .tb-product { grid-template-columns: 1fr; }
  .tb-section { padding: 32px 16px 8px; }
  .tb-section-head h2 { font-size: 28px !important; }
  .tb-card,
  .tb-short-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tb-short-image { flex: 0 0 88px; }

  body.tb-child .td-post-template-default .td-post-header .entry-title,
  body.tb-child .post .td-post-header .entry-title,
  body.tb-child .td-page-header h1,
  body.tb-child .td-category-header h1,
  body.tb-child .td-category-header .entry-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  body.tb-child .td-block-title-wrap .td-block-title,
  body.tb-child .td-block-title-wrap .block-title span {
    font-size: 26px !important;
  }

  body.tb-child .td-post-content {
    font-size: 16px;
  }

  body.tb-child .td-header-wrap .sf-menu > li > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  body.tb-child .td-post-content table,
  body.tb-child .tb-compare-wrap {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.tb-child .td-ss-main-sidebar {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .tb-hero-slide { min-height: 280px; }
  .tb-tile a { height: 108px; }
  .tb-btn-amazon,
  .tb-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }
}
