/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-container.module.css [client] (css) */
.tweet-container-module__CmFQMq__root {
  width: 100%;
  min-width: 250px;
  max-width: 550px;
  color: var(--tweet-font-color);
  font-family: var(--tweet-font-family);
  box-sizing: border-box;
  border: var(--tweet-border);
  margin: var(--tweet-container-margin);
  background-color: var(--tweet-bg-color);
  border-radius: 12px;
  font-weight: 400;
  transition-property: background-color, box-shadow;
  transition-duration: .2s;
  overflow: hidden;
}

.tweet-container-module__CmFQMq__root:hover {
  background-color: var(--tweet-bg-color-hover);
}

.tweet-container-module__CmFQMq__article {
  box-sizing: inherit;
  padding: .75rem 1rem;
  position: relative;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/theme.css [client] (css) */
.react-tweet-theme {
  --tweet-container-margin: 1.5rem 0;
  --tweet-header-font-size: .9375rem;
  --tweet-header-line-height: 1.25rem;
  --tweet-body-font-size: 1.25rem;
  --tweet-body-font-weight: 400;
  --tweet-body-line-height: 1.5rem;
  --tweet-body-margin: 0;
  --tweet-quoted-container-margin: .75rem 0;
  --tweet-quoted-body-font-size: .938rem;
  --tweet-quoted-body-font-weight: 400;
  --tweet-quoted-body-line-height: 1.25rem;
  --tweet-quoted-body-margin: .25rem 0 .75rem 0;
  --tweet-info-font-size: .9375rem;
  --tweet-info-line-height: 1.25rem;
  --tweet-actions-font-size: .875rem;
  --tweet-actions-line-height: 1rem;
  --tweet-actions-font-weight: 700;
  --tweet-actions-icon-size: 1.25em;
  --tweet-actions-icon-wrapper-size: calc(var(--tweet-actions-icon-size) + .75em);
  --tweet-replies-font-size: .875rem;
  --tweet-replies-line-height: 1rem;
  --tweet-replies-font-weight: 700;
}

:where(.react-tweet-theme) * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:is([data-theme="light"], .light) :where(.react-tweet-theme), :where(.react-tweet-theme) {
  --tweet-skeleton-gradient: linear-gradient(270deg,
    #fafafa,
    #eaeaea,
    #eaeaea,
    #fafafa);
  --tweet-border: 1px solid #cfd9de;
  --tweet-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --tweet-font-color: #0f1419;
  --tweet-font-color-secondary: #536471;
  --tweet-bg-color: #fff;
  --tweet-bg-color-hover: #f7f9f9;
  --tweet-quoted-bg-color-hover: #00000008;
  --tweet-color-blue-primary: #1d9bf0;
  --tweet-color-blue-primary-hover: #1a8cd8;
  --tweet-color-blue-secondary: #006fd6;
  --tweet-color-blue-secondary-hover: #006fd61a;
  --tweet-color-red-primary: #f91880;
  --tweet-color-red-primary-hover: #f918801a;
  --tweet-color-green-primary: #00ba7c;
  --tweet-color-green-primary-hover: #00ba7c1a;
  --tweet-twitter-icon-color: var(--tweet-font-color);
  --tweet-verified-old-color: #829aab;
  --tweet-verified-blue-color: var(--tweet-color-blue-primary);
}

:is([data-theme="dark"], .dark) :where(.react-tweet-theme) {
  --tweet-skeleton-gradient: linear-gradient(270deg,
    #15202b,
    #1e2732,
    #1e2732,
    #15202b);
  --tweet-border: 1px solid #425364;
  --tweet-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --tweet-font-color: #f7f9f9;
  --tweet-font-color-secondary: #8b98a5;
  --tweet-bg-color: #15202b;
  --tweet-bg-color-hover: #1e2732;
  --tweet-quoted-bg-color-hover: #ffffff08;
  --tweet-color-blue-primary: #1d9bf0;
  --tweet-color-blue-primary-hover: #1a8cd8;
  --tweet-color-blue-secondary: #6bc9fb;
  --tweet-color-blue-secondary-hover: #6bc9fb1a;
  --tweet-color-red-primary: #f91880;
  --tweet-color-red-primary-hover: #f918801a;
  --tweet-color-green-primary: #00ba7c;
  --tweet-color-green-primary-hover: #00ba7c1a;
  --tweet-twitter-icon-color: var(--tweet-font-color);
  --tweet-verified-old-color: #829aab;
  --tweet-verified-blue-color: #fff;
}

@media (prefers-color-scheme: dark) {
  :where(.react-tweet-theme) {
    --tweet-skeleton-gradient: linear-gradient(270deg,
      #15202b,
      #1e2732,
      #1e2732,
      #15202b);
    --tweet-border: 1px solid #425364;
    --tweet-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Helvetica, Arial, sans-serif;
    --tweet-font-color: #f7f9f9;
    --tweet-font-color-secondary: #8b98a5;
    --tweet-bg-color: #15202b;
    --tweet-bg-color-hover: #1e2732;
    --tweet-color-blue-primary: #1d9bf0;
    --tweet-color-blue-primary-hover: #1a8cd8;
    --tweet-color-blue-secondary: #6bc9fb;
    --tweet-color-blue-secondary-hover: #6bc9fb1a;
    --tweet-color-red-primary: #f91880;
    --tweet-color-red-primary-hover: #f918801a;
    --tweet-color-green-primary: #00ba7c;
    --tweet-color-green-primary-hover: #00ba7c1a;
    --tweet-twitter-icon-color: var(--tweet-font-color);
    --tweet-verified-old-color: #829aab;
    --tweet-verified-blue-color: #fff;
  }
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-header.module.css [client] (css) */
.tweet-header-module__A9EVQG__header {
  line-height: var(--tweet-header-line-height);
  font-size: var(--tweet-header-font-size);
  white-space: nowrap;
  overflow-wrap: break-word;
  padding-bottom: .75rem;
  display: flex;
  overflow: hidden;
}

.tweet-header-module__A9EVQG__avatar {
  width: 48px;
  height: 48px;
  position: relative;
}

.tweet-header-module__A9EVQG__avatarOverflow {
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.tweet-header-module__A9EVQG__avatarSquare {
  border-radius: 4px;
}

.tweet-header-module__A9EVQG__avatarShadow {
  width: 100%;
  height: 100%;
  transition-property: background-color;
  transition-duration: .2s;
  box-shadow: inset 0 0 2px #00000008;
}

.tweet-header-module__A9EVQG__avatarShadow:hover {
  background-color: #1a1a1a26;
}

.tweet-header-module__A9EVQG__author {
  flex-direction: column;
  justify-content: center;
  max-width: calc(100% - 84px);
  margin: 0 .5rem;
  display: flex;
}

.tweet-header-module__A9EVQG__authorLink {
  color: inherit;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.tweet-header-module__A9EVQG__authorLink:hover {
  text-decoration-line: underline;
}

.tweet-header-module__A9EVQG__authorVerified {
  display: inline-flex;
}

.tweet-header-module__A9EVQG__authorLinkText {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  overflow: hidden;
}

.tweet-header-module__A9EVQG__authorMeta, .tweet-header-module__A9EVQG__authorFollow {
  display: flex;
}

.tweet-header-module__A9EVQG__username {
  color: var(--tweet-font-color-secondary);
  text-overflow: ellipsis;
  text-decoration: none;
}

.tweet-header-module__A9EVQG__follow {
  color: var(--tweet-color-blue-secondary);
  font-weight: 700;
  text-decoration: none;
}

.tweet-header-module__A9EVQG__follow:hover {
  text-decoration-line: underline;
}

.tweet-header-module__A9EVQG__separator {
  padding: 0 .25rem;
}

.tweet-header-module__A9EVQG__brand {
  margin-inline-start: auto;
}

.tweet-header-module__A9EVQG__twitterIcon {
  width: 23.75px;
  height: 23.75px;
  color: var(--tweet-twitter-icon-color);
  fill: currentColor;
  -webkit-user-select: none;
  user-select: none;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/icons/icons.module.css [client] (css) */
.icons-module__ngm2nW__verified {
  fill: currentColor;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: text-bottom;
  max-width: 20px;
  height: 1.25em;
  max-height: 20px;
  margin-left: .125rem;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/verified-badge.module.css [client] (css) */
.verified-badge-module__y3BE2a__verifiedOld {
  color: var(--tweet-verified-old-color);
}

.verified-badge-module__y3BE2a__verifiedBlue {
  color: var(--tweet-verified-blue-color);
}

.verified-badge-module__y3BE2a__verifiedGovernment {
  color: #829aab;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-in-reply-to.module.css [client] (css) */
.tweet-in-reply-to-module__Lv55MG__root {
  color: var(--tweet-font-color-secondary);
  overflow-wrap: break-word;
  white-space: pre-wrap;
  margin-bottom: .25rem;
  font-size: .9375rem;
  line-height: 1.25rem;
  text-decoration: none;
}

.tweet-in-reply-to-module__Lv55MG__root:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-link.module.css [client] (css) */
.tweet-link-module__oos2ka__root {
  font-weight: inherit;
  color: var(--tweet-color-blue-secondary);
  cursor: pointer;
  text-decoration: none;
}

.tweet-link-module__oos2ka__root:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-body.module.css [client] (css) */
.tweet-body-module__ZNRZja__root {
  font-size: var(--tweet-body-font-size);
  font-weight: var(--tweet-body-font-weight);
  line-height: var(--tweet-body-line-height);
  margin: var(--tweet-body-margin);
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-media.module.css [client] (css) */
.tweet-media-module__TReg5a__root {
  margin-top: .75rem;
  position: relative;
  overflow: hidden;
}

.tweet-media-module__TReg5a__rounded {
  border: var(--tweet-border);
  border-radius: 12px;
}

.tweet-media-module__TReg5a__mediaWrapper {
  grid-auto-rows: 1fr;
  gap: 2px;
  width: 100%;
  height: 100%;
  display: grid;
}

.tweet-media-module__TReg5a__grid2Columns {
  grid-template-columns: repeat(2, 1fr);
}

.tweet-media-module__TReg5a__grid3 > a:first-child {
  grid-row: span 2;
}

.tweet-media-module__TReg5a__grid2x2 {
  grid-template-rows: repeat(2, 1fr);
}

.tweet-media-module__TReg5a__mediaContainer {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.tweet-media-module__TReg5a__mediaLink {
  outline-style: none;
  text-decoration: none;
}

.tweet-media-module__TReg5a__skeleton {
  width: 100%;
  padding-bottom: 56.25%;
  display: block;
}

.tweet-media-module__TReg5a__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-media-video.module.css [client] (css) */
.tweet-media-video-module__CjSC8q__anchor {
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 9999px;
  outline-style: none;
  align-items: center;
  padding: 0 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.tweet-media-video-module__CjSC8q__videoButton {
  background-color: var(--tweet-color-blue-primary);
  cursor: pointer;
  border: 4px solid #fff;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 67px;
  height: 67px;
  transition-property: background-color;
  transition-duration: .2s;
  display: flex;
  position: relative;
}

.tweet-media-video-module__CjSC8q__videoButton:hover, .tweet-media-video-module__CjSC8q__videoButton:focus-visible {
  background-color: var(--tweet-color-blue-primary-hover);
}

.tweet-media-video-module__CjSC8q__videoButtonIcon {
  color: #fff;
  fill: currentColor;
  -webkit-user-select: none;
  user-select: none;
  width: calc(50% + 4px);
  max-width: 100%;
  height: calc(50% + 4px);
  margin-left: 3px;
}

.tweet-media-video-module__CjSC8q__watchOnTwitter {
  position: absolute;
  top: 12px;
  right: 8px;
}

.tweet-media-video-module__CjSC8q__watchOnTwitter > a {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #0f1419bf;
  min-width: 2rem;
  min-height: 2rem;
  font-size: .875rem;
  line-height: 1rem;
}

.tweet-media-video-module__CjSC8q__watchOnTwitter > a:hover {
  background-color: #272c30bf;
}

.tweet-media-video-module__CjSC8q__viewReplies {
  background-color: var(--tweet-color-blue-primary);
  border-color: var(--tweet-color-blue-primary);
  min-height: 2rem;
  font-size: .9375rem;
  line-height: 1.25rem;
  position: relative;
}

.tweet-media-video-module__CjSC8q__viewReplies:hover {
  background-color: var(--tweet-color-blue-primary-hover);
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-info-created-at.module.css [client] (css) */
.tweet-info-created-at-module__GZMM3G__root {
  color: inherit;
  font-size: var(--tweet-info-font-size);
  line-height: var(--tweet-info-line-height);
  text-decoration: none;
}

.tweet-info-created-at-module__GZMM3G__root:hover {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-info.module.css [client] (css) */
.tweet-info-module___F14PW__info {
  color: var(--tweet-font-color-secondary);
  overflow-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  margin-top: .125rem;
  display: flex;
}

.tweet-info-module___F14PW__infoLink {
  color: inherit;
  height: var(--tweet-actions-icon-wrapper-size);
  width: var(--tweet-actions-icon-wrapper-size);
  font: inherit;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: -4px;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  display: flex;
}

.tweet-info-module___F14PW__infoLink:hover {
  background-color: var(--tweet-color-blue-secondary-hover);
}

.tweet-info-module___F14PW__infoIcon {
  color: inherit;
  fill: currentColor;
  height: var(--tweet-actions-icon-size);
  -webkit-user-select: none;
  user-select: none;
}

.tweet-info-module___F14PW__infoLink:hover > .tweet-info-module___F14PW__infoIcon {
  color: var(--tweet-color-blue-secondary);
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-actions.module.css [client] (css) */
.tweet-actions-module__TCXXfW__actions {
  color: var(--tweet-font-color-secondary);
  border-top: var(--tweet-border);
  overflow-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  margin-top: .25rem;
  padding-top: .25rem;
  display: flex;
}

.tweet-actions-module__TCXXfW__like, .tweet-actions-module__TCXXfW__reply, .tweet-actions-module__TCXXfW__copy {
  color: inherit;
  align-items: center;
  margin-right: 1.25rem;
  text-decoration: none;
  display: flex;
}

.tweet-actions-module__TCXXfW__like:hover, .tweet-actions-module__TCXXfW__reply:hover, .tweet-actions-module__TCXXfW__copy:hover {
  background-color: #0000;
}

.tweet-actions-module__TCXXfW__like:hover > .tweet-actions-module__TCXXfW__likeIconWrapper {
  background-color: var(--tweet-color-red-primary-hover);
}

.tweet-actions-module__TCXXfW__like:hover > .tweet-actions-module__TCXXfW__likeCount {
  color: var(--tweet-color-red-primary);
  text-decoration-line: underline;
}

.tweet-actions-module__TCXXfW__likeIconWrapper, .tweet-actions-module__TCXXfW__replyIconWrapper, .tweet-actions-module__TCXXfW__copyIconWrapper {
  width: var(--tweet-actions-icon-wrapper-size);
  height: var(--tweet-actions-icon-wrapper-size);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  margin-left: -.25rem;
  display: flex;
}

.tweet-actions-module__TCXXfW__likeIcon, .tweet-actions-module__TCXXfW__replyIcon, .tweet-actions-module__TCXXfW__copyIcon {
  height: var(--tweet-actions-icon-size);
  fill: currentColor;
  -webkit-user-select: none;
  user-select: none;
}

.tweet-actions-module__TCXXfW__likeIcon {
  color: var(--tweet-color-red-primary);
}

.tweet-actions-module__TCXXfW__likeCount, .tweet-actions-module__TCXXfW__replyText, .tweet-actions-module__TCXXfW__copyText {
  font-size: var(--tweet-actions-font-size);
  font-weight: var(--tweet-actions-font-weight);
  line-height: var(--tweet-actions-line-height);
  margin-left: .25rem;
}

.tweet-actions-module__TCXXfW__reply:hover > .tweet-actions-module__TCXXfW__replyIconWrapper {
  background-color: var(--tweet-color-blue-secondary-hover);
}

.tweet-actions-module__TCXXfW__reply:hover > .tweet-actions-module__TCXXfW__replyText {
  color: var(--tweet-color-blue-secondary);
  text-decoration-line: underline;
}

.tweet-actions-module__TCXXfW__replyIcon {
  color: var(--tweet-color-blue-primary);
}

.tweet-actions-module__TCXXfW__copy {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.tweet-actions-module__TCXXfW__copy:hover > .tweet-actions-module__TCXXfW__copyIconWrapper {
  background-color: var(--tweet-color-green-primary-hover);
}

.tweet-actions-module__TCXXfW__copy:hover .tweet-actions-module__TCXXfW__copyIcon {
  color: var(--tweet-color-green-primary);
}

.tweet-actions-module__TCXXfW__copy:hover > .tweet-actions-module__TCXXfW__copyText {
  color: var(--tweet-color-green-primary);
  text-decoration-line: underline;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-replies.module.css [client] (css) */
.tweet-replies-module__ktL-Xa__replies {
  padding: .25rem 0;
}

.tweet-replies-module__ktL-Xa__link {
  color: var(--tweet-color-blue-secondary);
  -webkit-user-select: none;
  user-select: none;
  border: var(--tweet-border);
  border-radius: 9999px;
  outline-style: none;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 1rem;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: .2s;
  display: flex;
}

.tweet-replies-module__ktL-Xa__link:hover {
  background-color: var(--tweet-color-blue-secondary-hover);
}

.tweet-replies-module__ktL-Xa__text {
  font-weight: var(--tweet-replies-font-weight);
  font-size: var(--tweet-replies-font-size);
  line-height: var(--tweet-replies-line-height);
  overflow-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/quoted-tweet/quoted-tweet-container.module.css [client] (css) */
.quoted-tweet-container-module__cim9QG__root {
  border: var(--tweet-border);
  width: 100%;
  margin: var(--tweet-quoted-container-margin);
  cursor: pointer;
  border-radius: 12px;
  transition-property: background-color, box-shadow;
  transition-duration: .2s;
  overflow: hidden;
}

.quoted-tweet-container-module__cim9QG__root:hover {
  background-color: var(--tweet-quoted-bg-color-hover);
}

.quoted-tweet-container-module__cim9QG__article {
  box-sizing: inherit;
  position: relative;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/quoted-tweet/quoted-tweet-header.module.css [client] (css) */
.quoted-tweet-header-module__Cx2l9W__header {
  line-height: var(--tweet-header-line-height);
  font-size: var(--tweet-header-font-size);
  white-space: nowrap;
  overflow-wrap: break-word;
  padding: .75rem .75rem 0;
  display: flex;
  overflow: hidden;
}

.quoted-tweet-header-module__Cx2l9W__avatar {
  width: 20px;
  height: 20px;
  position: relative;
}

.quoted-tweet-header-module__Cx2l9W__avatarSquare {
  border-radius: 4px;
}

.quoted-tweet-header-module__Cx2l9W__author {
  margin: 0 .5rem;
  display: flex;
}

.quoted-tweet-header-module__Cx2l9W__authorText {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  overflow: hidden;
}

.quoted-tweet-header-module__Cx2l9W__username {
  color: var(--tweet-font-color-secondary);
  text-overflow: ellipsis;
  margin-left: .125rem;
  text-decoration: none;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/quoted-tweet/quoted-tweet-body.module.css [client] (css) */
.quoted-tweet-body-module__qHviCq__root {
  font-size: var(--tweet-quoted-body-font-size);
  font-weight: var(--tweet-quoted-body-font-weight);
  line-height: var(--tweet-quoted-body-line-height);
  margin: var(--tweet-quoted-body-margin);
  overflow-wrap: break-word;
  white-space: pre-wrap;
  padding: 0 .75rem;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-not-found.module.css [client] (css) */
.tweet-not-found-module__sn80BG__root {
  flex-direction: column;
  align-items: center;
  padding-bottom: .75rem;
  display: flex;
}

.tweet-not-found-module__sn80BG__root > h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/skeleton.module.css [client] (css) */
.skeleton-module__yM3A9W__skeleton {
  background-image: var(--tweet-skeleton-gradient);
  background-size: 400% 100%;
  border-radius: 5px;
  width: 100%;
  animation: 8s ease-in-out infinite skeleton-module__yM3A9W__loading;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-module__yM3A9W__skeleton {
    background-position: 200% 0;
    animation: none;
  }
}

@keyframes skeleton-module__yM3A9W__loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* [project]/node_modules/react-tweet/dist/twitter-theme/tweet-skeleton.module.css [client] (css) */
.tweet-skeleton-module__ZayCwq__root {
  pointer-events: none;
  padding-bottom: .25rem;
}

/* [project]/components/blog/post-body/post-body.css [client] (css) */
.post-body {
  color: #1d242acc;
  max-width: 100dvw;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  overflow-x: hidden;
}

.post-body--full-width {
  box-sizing: border-box;
  width: 100%;
  max-width: none !important;
}

@media only screen and (min-width: 992px) {
  .post-body {
    max-width: 838px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    overflow-x: visible;
  }

  .post-body--with-chapters {
    width: 100%;
    max-width: 1160px;
  }

  .post-body--full-width {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: none !important;
  }
}

.post-body .chapters {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

@media only screen and (min-width: 992px) {
  .post-body .chapters {
    flex-direction: row;
    align-items: stretch;
  }
}

.post-body .chapter-header {
  border-bottom: 1px solid #1d242a1f;
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .post-body .chapter-header {
    box-sizing: border-box;
    border: none;
    flex-direction: column;
    flex: 0 0 300px;
    align-self: stretch;
    width: 300px;
    max-width: min(300px, 100%);
    min-height: 0;
    display: flex;
  }
}

.post-body .chapter-header a {
  color: #1d242acc;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  display: block;
  position: relative;
}

.post-body .chapter-header a:after {
  content: "";
  background: url("/icons/blog-arrow.svg");
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
}

@media only screen and (min-width: 992px) {
  .post-body .chapter-header a {
    font-size: 18px;
  }

  .post-body .chapter-header a:after {
    all: initial;
  }
}

.post-body .chapter-header .highlighted {
  font-weight: 600;
}

.post-body .chapter-header-toc {
  flex-shrink: 0;
}

@media only screen and (max-width: 991px) {
  .post-body .chapter-header-ads {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .post-body .chapter-header-ads {
    z-index: 1;
    position: relative;
    overflow: visible;
  }
}

.post-body .chapter-header h2 {
  color: #1d242a;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}

.post-body .chapter-header hr {
  opacity: .12;
  background: #1d242a;
  margin: 5px 0 20px;
  line-height: 40px;
}

.post-body .chapters-body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

@media only screen and (min-width: 992px) {
  .post-body .chapters-body {
    flex: 1;
    min-width: 0;
    max-width: none;
  }
}

.post-body .post-body-leaderboard-slot {
  box-sizing: border-box;
  width: 728px;
  max-width: 100%;
  margin: 0 auto 24px;
}

.post-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  font-family: inherit;
}

.post-body .table-vehicles table {
  margin: 0 !important;
}

.post-body .table-vehicles th {
  text-align: center;
  white-space: pre-line;
  vertical-align: middle;
  line-height: 1.5;
  padding: 16px !important;
  font-weight: 600 !important;
}

.post-body .table-vehicles td:first-child {
  vertical-align: middle;
  white-space: pre-line;
  width: 248px;
  line-height: 1.5;
  font-weight: 500 !important;
}

.post-body td, .post-body th {
  text-align: left;
  vertical-align: middle;
  white-space: pre-line;
  border: 1px solid #ddd;
  padding: 8px;
  font-weight: 500;
  overflow: hidden;
}

.post-body td:first-child {
  overflow-wrap: unset;
}

.post-body th {
  font-weight: 700;
}

.post-body tr:nth-child(2n) {
  background-color: #eee;
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {
  color: #1d242a;
  margin-top: 2em;
  margin-bottom: .75em;
  line-height: 1.3;
}

.post-body h1:first-child, .post-body h2:first-child, .post-body h3:first-child, .post-body h4:first-child {
  margin-top: 0;
}

.post-body h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

.post-body h2 {
  font-size: 1.75rem;
  font-weight: 500;
}

.post-body h3 {
  font-size: 1.25rem;
}

.post-body h4 {
  font-size: 1.125rem;
}

@media only screen and (min-width: 992px) {
  .post-body h1 {
    font-size: 2rem;
  }

  .post-body h2 {
    font-size: 1.75rem;
  }

  .post-body h3 {
    font-size: 1.375rem;
  }

  .post-body h4 {
    font-size: 1.125rem;
  }
}

.post-body strong {
  font-weight: 600;
}

.post-body ul {
  list-style: outside;
}

.post-body ol {
  list-style: decimal;
}

.post-body a {
  color: #4179c3;
  text-underline-offset: 1.5px;
  text-decoration-color: #4179c3;
  text-decoration-thickness: .125em;
}

.post-body blockquote {
  text-align: center;
  color: #1d242a;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

@media only screen and (min-width: 992px) {
  .post-body blockquote {
    font-size: 24px;
    line-height: 30px;
  }
}

.post-body .yt-embed {
  aspect-ratio: 16 / 9;
  min-width: 100%;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
  .post-body .yt-embed {
    min-height: 478px;
    margin-bottom: 30px;
  }
}

.post-body .yt-embed iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100% !important;
}

.post-body p, .post-body figure, .post-body ul, .post-body ol, .post-body blockquote, .post-body iframe {
  margin-bottom: 24px;
}

@media only screen and (min-width: 992px) {
  .post-body p, .post-body figure, .post-body ul, .post-body ol, .post-body blockquote, .post-body iframe {
    margin-bottom: 30px;
  }

  .post-body ul {
    padding-left: 30px;
  }
}

.post-body .social {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.post-body figcaption {
  text-align: center;
  color: #2e2d2d;
  margin-top: 4px;
  font-size: 16px;
  font-style: italic;
}

.post-body .carousel .carousel-desc-text {
  background: #000;
  width: 100%;
}

.post-body .carousel {
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .post-body .carousel {
    width: 848px;
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
  }
}

.post-body .carousel .carousel-control-next, .post-body .carousel .carousel-control-prev {
  opacity: 0;
}

.post-body .carousel:hover .carousel-control-next, .post-body .carousel:hover .carousel-control-prev {
  opacity: 1;
}

.post-body .carousel .carousel-control-next-icon, .post-body .carousel .carousel-control-prev-icon {
  width: 3rem;
  height: 3rem;
}

.post-body .carousel .carousel-control-prev-icon {
  opacity: .4;
  background-color: #000;
  background-image: url("/chevron-left-black.svg");
  border-radius: 50%;
}

.post-body .carousel .carousel-control-next-icon {
  opacity: .4;
  background-color: #000;
  background-image: url("/chevron-right-black.svg");
  border-radius: 50%;
}

.post-body .carousel .carousel-control-next-icon:hover, .post-body .carousel .carousel-control-prev-icon:hover {
  opacity: .7;
}

.post-body .header-picture {
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .post-body .header-picture {
    width: 848px;
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
  }
}

.post-body .sideBySideImage {
  flex-direction: row;
  gap: 16px;
  margin: 20px 0;
  display: flex;
}

.post-body .iframe-div-map {
  width: 100% !important;
  height: 300px !important;
}

@media only screen and (min-width: 992px) {
  .post-body .iframe-div-map {
    height: 600px !important;
  }
}

.post-body .iframe-div {
  max-width: 100% !important;
}

.post-body .key-points {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px 24px;
}

.post-body .key-points h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

@media only screen and (min-width: 992px) {
  .post-body .key-points {
    float: right;
    width: 50%;
    margin: 24px 0;
  }

  .post-body .Wattivo-inline-slide-1 {
    display: none !important;
  }
}

.post-body row {
  flex: 50%;
  padding: 5px;
}

.post-body .star-ratings {
  align-items: center;
  gap: 5px;
  display: flex;
}

.post-body .star {
  color: #fbd630;
}

.post-body .parent-container-reviews .reviewer-name {
  color: #1d242a;
  margin-bottom: 8px;
  font-weight: 600;
}

.post-body .parent-container-reviews .container-rating {
  font-weight: 20px;
}

.post-body .parent-container-reviews .section-top {
  margin-bottom: 32px;
}

.post-body .parent-container-reviews .section-top .top-rating {
  font-size: 24px;
}

.post-body .parent-container-reviews .average-rating {
  white-space: nowrap;
  margin-left: 8px;
}

.post-body .parent-container-reviews .container-review {
  margin-bottom: 8px;
}

.post-body .parent-container-reviews h3 {
  margin-bottom: 12px;
}

.post-body .parent-container-reviews .expand-icon {
  margin-right: 4px;
  font-size: 24px;
}

.post-body .parent-container-reviews .score-breakdown {
  display: flex;
}

.post-body .parent-container-reviews .score-breakdown-table {
  table-layout: fixed;
  width: 100%;
  margin-top: 4px;
}

.post-body .parent-container-reviews .score-breakdown-table td {
  vertical-align: middle;
  background-color: #f5f6f8;
  padding: 8px 12px;
}

.post-body .parent-container-reviews .score-breakdown-table td:first-of-type {
  white-space: nowrap;
  width: 55%;
}

.post-body .parent-container-reviews .score-breakdown-table td:last-of-type {
  text-align: right;
  white-space: nowrap;
  width: 45%;
}

.post-body .parent-container-reviews th {
  font-weight: 600;
}

.post-body .parent-container-reviews .icon {
  font-size: 24px;
}

.post-body .parent-container-reviews .thunderbolt-icon {
  color: #55c72b;
}

.post-body .parent-container-reviews .thunder-bolt-icon-main {
  font-size: 32px;
}

.post-body .pro {
  color: #55c72b;
}

.post-body .pro .icon {
  margin-right: 4px;
}

.post-body .con {
  color: #ff5b5c;
}

.post-body .con .icon {
  margin-right: 8px;
  font-size: 18px;
}

.post-body .column-heading {
  font-weight: 600;
}

.post-body .review-table-container {
  margin-top: 32px;
}

.post-body .review-table-container p {
  margin-bottom: 4px;
}

@media only screen and (min-width: 992px) {
  .post-body .review-table-container {
    display: flex;
  }
}

.post-body .review-table-container ul {
  padding: 0;
}

.post-body .review-table-container li {
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  padding-inline-start: 0;
  list-style-type: none;
  display: flex;
}

.post-body .review-table-container li span {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

@media only screen and (min-width: 992px) {
  .post-body .review-table-col {
    width: 50%;
  }
}

.swiper-container-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-container-wrapper .swiper-wrapper {
  box-sizing: content-box;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.swiper-container-wrapper .swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

@media only screen and (min-width: 769px) and (max-width: 1023px) {
  .swiper-container-wrapper .swiper-slide {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) {
  .swiper-container-wrapper .swiper-slide {
    width: 33.3333%;
  }
}

.swiper-container-wrapper .swiper-slide .card-wrapper {
  flex-direction: column;
  height: 100%;
  display: flex;
  width: 100% !important;
}

.swiper-container-wrapper .swiper-slide .card-picture {
  height: 180px;
}

.swiper-container-wrapper .swiper-slide .card-picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper-container-wrapper .swiper-slide .card-details {
  flex-direction: column;
  flex: 1;
  gap: 6px;
  padding: 14px 12px;
  display: flex;
}

.swiper-container-wrapper .swiper-slide-prev, .swiper-container-wrapper .swiper-slide-next, .swiper-container-wrapper .swiper-slide-active {
  transition: all .3s;
}

.swiper-container-wrapper .swiper-button-prev, .swiper-container-wrapper .swiper-button-next {
  display: none;
}

.swiper-container-wrapper .swiper-pagination {
  z-index: 10;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-container-wrapper .swiper-pagination-bullet {
  cursor: pointer;
  -o-transition: all .5s ease-out;
  background: #bcefdc;
  border: none;
  border-radius: 50%;
  outline: none;
  width: 10px;
  height: 10px;
  transition: all .5s ease-out;
}

.swiper-container-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #55c72b;
  -o-transition: all .5s ease-out !important;
  border-radius: 8px !important;
  width: 50px !important;
  height: 8px !important;
  transition: all .5s ease-out !important;
}

.swiper-container-wrapper .swiper-pagination-bullet:hover {
  opacity: .8;
  background: #55c72b;
}

.swiper-container-wrapper .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

@media (max-width: 768px) {
  .swiper-container-wrapper .swiper-slide {
    width: 100%;
  }
}

.static-grid {
  all: unset;
  box-sizing: border-box;
  gap: 20px;
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  position: relative;
  overflow: auto hidden;
  grid-template-columns: 1fr !important;
  display: grid !important;
}

@media (min-width: 769px) and (max-width: 1023px) {
  .static-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .static-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .static-grid {
    grid-template-columns: 1fr !important;
  }
}

.static-grid .static-post-item {
  box-sizing: border-box;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.static-grid .static-post-item .card-wrapper {
  flex-direction: column;
  height: 100%;
  display: flex;
  width: 100% !important;
}

.static-grid .static-post-item .card-picture {
  height: 180px;
}

.static-grid .static-post-item .card-picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.static-grid .static-post-item .card-details {
  flex-direction: column;
  flex: 1;
  gap: 6px;
  padding: 14px 12px;
  display: flex;
}

.static-grid .table-vehicles-container {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
}

.static-grid .table-vehicles-container .table-vehicles-title {
  color: #312e29;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.static-grid .table-vehicles-container .table-vehicles-description {
  color: #1d242acc;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.static-grid .table-vehicles-container .table-vehicles-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px #0000001a;
}

.static-grid .table-vehicles-container .table-vehicles {
  border-collapse: collapse;
  background: #fff;
  width: max-content;
  min-width: 100%;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-row {
  background-color: #f8f9fa;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-row .table-vehicles-label-column {
  color: #312e29;
  text-align: left;
  background-color: #e2e8f0;
  border-right: 1px solid #d1d5db;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-row .table-vehicles-header-cell {
  color: #312e29;
  text-align: center;
  white-space: nowrap;
  background-color: #f8f9fa;
  border-right: 1px solid #d1d5db;
  width: max-content;
  min-width: 150px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-row .table-vehicles-header-cell:last-child {
  border-right: none;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row {
  background-color: #fff;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row:hover {
  background-color: #f7fafc;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row .table-vehicles-label-column {
  color: #4a5568;
  text-align: left;
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #d1d5db;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row .table-vehicles-image-cell {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #d1d5db;
  width: max-content;
  min-width: 120px;
  padding: 16px 20px;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row .table-vehicles-image-cell:last-child {
  border-right: none;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row .table-vehicles-image-cell .vehicle-img {
  object-fit: cover;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  width: 80px;
  height: 60px;
  margin: 0 auto;
  display: block;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-row .table-vehicles-image-cell .no-image {
  color: #9ca3af;
  font-style: italic;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row {
  background-color: #fff;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row:hover {
  background-color: #f7fafc;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row:last-child .table-vehicles-label-column, .static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row:last-child .table-vehicles-data-cell {
  border-bottom: none;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row .table-vehicles-label-column {
  color: #4a5568;
  text-align: left;
  text-transform: capitalize;
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #d1d5db;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row .table-vehicles-data-cell {
  text-align: center;
  color: #312e29;
  white-space: nowrap;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #d1d5db;
  width: max-content;
  min-width: 120px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

.static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-row .table-vehicles-data-cell:last-child {
  border-right: none;
}

@media only screen and (min-width: 992px) {
  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-cell {
    min-width: 200px;
    font-size: 18px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-cell {
    min-width: 150px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-cell .vehicle-img {
    width: 100px;
    height: 75px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-cell {
    min-width: 150px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .static-grid .table-vehicles-container .table-vehicles-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-cell {
    min-width: 100px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-label-column {
    padding: 12px 16px;
    font-size: 14px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-cell {
    min-width: 100px;
    padding: 12px 16px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-cell .vehicle-img {
    width: 60px;
    height: 45px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-cell {
    min-width: 100px;
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-header-cell {
    min-width: 80px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-label-column {
    padding: 10px 12px;
    font-size: 12px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-cell {
    min-width: 80px;
    padding: 10px 12px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-image-cell .vehicle-img {
    width: 50px;
    height: 38px;
  }

  .static-grid .table-vehicles-container .table-vehicles .table-vehicles-data-cell {
    min-width: 80px;
    padding: 8px 12px;
    font-size: 11px;
  }
}

/*# sourceMappingURL=_0t4lod9._.css.map*/