@charset "UTF-8";
/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
/* Flex utilities */
.flex-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.full-height-children > * {
  height: 100%;
}

/* Spacing utilities */
.nopadding,
.has-nopadding {
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

/* Border utilities */
.no-border,
.no-border * {
  border: 0 !important;
  box-shadow: none !important;
}

.has-border {
  border: 1px solid #e5e7eb;
}

.has-border-bottom {
  border-bottom: 1px solid #e5e7eb;
}

.border-radius {
  border-radius: 0.25rem;
}

.border-radius-10,
mark {
  border-radius: 0.625rem;
}

/* Shadow utilities */
.main-shadow {
  box-shadow: var(--main-shadow);
}

.noshadow {
  box-shadow: none !important;
}

/* Background utilities */
.nobackground {
  background: transparent !important;
}

.blend-multiply {
  mix-blend-mode: multiply;
}

/* Visibility utilities */
.hide-accesible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .nomobile {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .notablet {
    display: none;
  }
}
@media (min-width: 768px) {
  .no-desktop,
  .no-laptop,
  .nopc {
    display: none !important;
  }
}
/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h4,
h5 {
  letter-spacing: -0.0125em;
}

figcaption,
.wp-element-caption {
  font-family: var(--font-sans);
  text-align: left;
  font-size: var(--fs-s) !important;
}

figcaption::before {
  content: "\e90f";
  font-family: md-icon;
  margin-right: 0.5rem;
}

/* ==========================================================================
   LINKS
   ========================================================================== */
.header a,
.footer a {
  text-decoration: none;
}

.footer-copy a {
  text-decoration: underline;
}

a:where(:not(.wp-element-button)) {
  text-decoration: underline;
  text-decoration-color: rgba(192, 57, 43, 0.2588235294) !important;
}

a:where(:not(.wp-element-button)):hover {
  text-decoration: none;
  color: #666;
}

.header-menu a:where(:not(.wp-element-button)) {
  font-weight: 500;
}

.header-menu a:hover {
  color: inherit;
}

.byline a {
  border-bottom: 0 !important;
}

/* Amazon link indicator */
h2 a[href*="amazon.com"]::after,
h3 a[href*="amazon.com"]::after,
p a[href*="amazon.com"]::after,
p a[href*="amazon.in"]::after {
  content: " ↗";
  color: #c0392b;
}

/* Submenu hover */
.sub-menu a:hover {
  color: #c0392b !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.buttons a {
  color: #fff;
  border: 0;
  background: linear-gradient(to bottom, #f88040, #d33a2c);
  padding: 0.75rem;
  border-radius: 0.3125rem;
  display: inline-block;
}

.button.button-underline {
  font-weight: 900;
  text-decoration: underline;
  padding: 0;
  box-shadow: none;
  color: var(--accent-color-primary);
  background: transparent;
}

.button.button-minimal {
  background-color: transparent;
  color: #333;
  padding: 0.5rem;
  line-height: 1.2;
  border: 1px solid #ddd;
  border-radius: 0.3125rem;
  font-size: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.button.button-minimal:hover {
  border: 0;
  background: #eff5ff;
}

.sagecell button.sagecell_evalButton {
  cursor: pointer !important;
}

:root :where(.wp-block-button.is-style-outline .wp-block-button__link) {
  border-bottom: 2px solid currentcolor !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.transparent-header .header {
  background-color: transparent !important;
  margin-bottom: -80px;
  border-bottom: 0 !important;
}

.dark-header .logo-text {
  color: #fff !important;
}

.menu-item-desc {
  display: none !important;
}

.sub-menu .menu-item {
  border-bottom: 1px solid #ddd;
}

.sub-menu {
  font-weight: 400;
}

@media (min-width: 768px) {
  .megamenu .sub-menu {
    min-width: max-content;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .menu .menu-toggle {
    background-color: transparent;
  }
}
/* ==========================================================================
   CONTENT & CARDS
   ========================================================================== */
.card,
.sidebar section,
#rank-math-rich-snippet-wrapper {
  border: 1px solid #ddd;
  border-radius: var(--radius-s);
}

.sidebar section,
#rank-math-rich-snippet-wrapper {
  padding: var(--space-xs);
  background: #fff;
}

#rank-math-rich-snippet-wrapper {
  margin-bottom: 2rem;
  box-shadow: var(--main-shadow);
}

#rank-math-rich-snippet-wrapper .rank-math-review-data > p:not(:first-of-type),
.rank-math-total-wrapper strong,
#rank-math-rich-snippet-wrapper h5 {
  display: none !important;
}

#rank-math-rich-snippet-wrapper > :not(.rank-math-review-image),
blockquote {
  padding: 1rem;
}

.format figure {
  margin-bottom: 1.5rem;
}

header.content-headline {
  padding-top: var(--space-l);
}

/* Bleed layout */
.content-inner .alignfull.bleed,
.content-inner .bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   CLICKABLE & INTERACTIVE ELEMENTS
   ========================================================================== */
:focus {
  border: 2px solid;
}

.clickable-parent:not(a),
.clickable-parent:not(a) a {
  position: static;
}

.clickable-parent:not(a) > a::after {
  content: "";
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
}

.md-card-linked {
  position: relative;
}

/* Scroll behavior */
[id] {
  scroll-margin-top: calc(100px + 2rem);
}

/* ==========================================================================
   TABLES
   ========================================================================== */
.wp-block-table table th {
  background: #080808;
  color: #fff;
  border: 1px solid #666;
}

.wp-block-table table thead tr {
  border-bottom: 2px solid #001947;
}

.wp-block-table td,
.wp-block-table th {
  border-color: #ddd8d8;
  padding: 6px;
}

.amz-table img,
.amaz-table img {
  max-width: 100px !important;
}

.is-style-small-table {
  font-size: 15px;
}

.has-ratings table tr strong::after,
.is-style-ratings table tr strong::after {
  content: "⭐";
  font-size: 100%;
  margin-left: 0.3125rem;
  padding: 0.3125rem;
}

/* ==========================================================================
   LISTS
   ========================================================================== */
.format .widget ul,
.format .widget ol,
.widget_recent_entries ul {
  margin-left: 0;
}

.is-style-list ul,
.is-style-list ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   BLOCKQUOTES
   ========================================================================== */
blockquote.wp-block-quote {
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.5;
}

blockquote.wp-block-quote::before {
  content: '"';
  display: inline-block;
  position: relative;
  left: -1rem;
  top: -2rem;
  font-size: 80px;
  float: left;
}

@media (min-width: 992px) {
  blockquote.wp-block-quote {
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
/* ==========================================================================
   FORMS
   ========================================================================== */
.form-linear-grid,
.form-linear-grid-fixed {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

/* ==========================================================================
   CTA BAR
   ========================================================================== */
.cta-bar-corner.cta-bar-close {
  font-size: 32px;
  margin-top: -30px;
  background: rgba(192, 57, 43, 0.8);
  padding: 0.5rem 0.7rem;
  border-radius: 100rem;
}

.cta-bar__minimal,
.cta-bar__minimal .button span {
  font-size: 1rem;
}

/* ==========================================================================
   BYLINE & AVATARS
   ========================================================================== */
.byline .avatar {
  margin-top: -0.5rem;
}

.byline-author img {
  width: 40px;
  height: 40px;
}

.w-80-h-80,
.w-80-h-80 img {
  width: 40px !important;
  max-width: 40px;
  height: 40px !important;
}

/* ==========================================================================
   DETAILS/ACCORDION
   ========================================================================== */
details {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

details:hover {
  border-color: #ccc;
  background-color: #f7f7f7;
}

summary {
  cursor: pointer;
  font-weight: 600;
  outline: 0;
}

summary:focus,
summary:hover {
  font-weight: 900;
}

details details {
  margin-left: 1.5rem;
}

details > :not(summary) {
  margin-top: 1.3rem;
}

details > * {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* RankMath Accordion */
.rankmath-accordion .rank-math-list-item .rank-math-question {
  cursor: pointer;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #eee;
}

.rankmath-accordion .rank-math-answer {
  display: none;
}

.rankmath-accordion .rank-math-list-item .rank-math-question::after {
  content: "+";
  float: right;
}

.rankmath-accordion .rank-math-list-item.active .rank-math-answer {
  display: block;
}

/* ==========================================================================
   RANK MATH COMPONENTS
   ========================================================================== */
.rank-math-question {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 0.25rem 0;
  font-weight: 600;
  font-size: 1.3rem;
  color: #125e24;
}

.rank-math-review-pros ul li,
.rank-math-review-cons ul li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.75rem;
}

/* ==========================================================================
   PARAGRAPH LIMITER
   ========================================================================== */
.paragraph-limited {
  overflow: hidden;
  max-height: 4.9em;
  cursor: pointer;
  transition: max-height 0.3s ease;
  position: relative;
}

.paragraph-limited::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2.5em;
  background: linear-gradient(transparent, #fff);
}

.paragraph-limited.expanded {
  max-height: none;
  cursor: pointer;
}

.paragraph-limited.expanded::after {
  display: none;
}

.paragraph-limited-6 {
  max-height: 10em;
}

/* ==========================================================================
   SHARE BUTTONS
   ========================================================================== */
.content .share.share-bold a {
  max-width: 48px;
  margin-right: 1rem;
  border-radius: var(--radius-s);
}

/* ==========================================================================
   VIDEO EMBEDS
   ========================================================================== */
.perfmatters-lazy-youtube {
  border-radius: 10px;
  box-shadow: var(--main-shadow);
}

.wp-block-embed.is-type-video iframe {
  width: 100%;
  height: auto;
  margin: auto;
  max-width: 100%;
  aspect-ratio: 16/9;
}

/* ==========================================================================
   MISC COMPONENTS
   ========================================================================== */
.ff-t-container {
  margin-bottom: 1.5rem;
}

.callout-icon.icon {
  line-height: 1;
}

span.cmd-button {
  padding: 6px;
  background: rgba(1, 25, 71, 0.4);
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes slideDown {
  from {
    transform: translateY(-1.25rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slidedown {
  transform: translateY(-1.25rem);
  opacity: 0;
  animation: slideDown 0.5s forwards;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
