@charset "utf-8";
/*
 * Consent gate for YouTube embeds — pairs with custom/onetrust/js/consent-video.js.
 * Mirrors the standard Toyota "video blocked by consent" treatment used on
 * toyota.co.th so the notice looks the same across TMT sites.
 */
/* Wraps a blocked iframe so the notice can cover exactly the box the site's
   own CSS gives that iframe. */
.pdpa-video-slot {
  position: relative;
  display: block;
}

/* Base notice. Used in the flow where a slot needs its own box
   (e.g. inside a popup); the --overlay modifier covers an existing box. */
.pdpa-info-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: url("https://www.toyota.co.th/media/general/yt-cookie-consent-bg-default.webp") center/cover no-repeat #000;
  text-align: center;
}
/* Covers a slot that is already sized — e.g. the nav video button. */
.pdpa-info-box--overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  aspect-ratio: auto;
}
.pdpa-info-box .overlay-text {
  z-index: 2;
  max-width: 90%;
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--sarabun-li, inherit);
  text-align: center;
}
.pdpa-info-box .title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.pdpa-info-box .desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
}
.pdpa-info-box .btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #eb081e;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pdpa-info-box .btn:hover {
  background: #ff7878;
}

@media (max-width: 991px) {
  .pdpa-info-box .overlay-text {
    padding: 14px;
  }
  .pdpa-info-box .title {
    font-size: 15px;
  }
  .pdpa-info-box .desc {
    margin-bottom: 14px;
    font-size: 12px;
  }
  .pdpa-info-box .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* --- cheewa-panavet slots --- */
/* Nav video shows the notice instead of the play affordance while blocked. */
.site-nav__video.is-blocked {
  cursor: pointer;
}
.site-nav__video.is-blocked .site-nav__video-play {
  display: none;
}

/* Match the rounding of the iframe the notice stands in for. */
.home-popup__content .pdpa-info-box {
  border-radius: 0.4166666667vw;
}
@media (max-width: 991px) {
  .home-popup__content .pdpa-info-box {
    border-radius: 1.5267175573vw;
  }
}

/* Article media figure: same treatment, the play button would be a dead end. */
.news-detail__media.is-blocked {
  cursor: pointer;
}
.news-detail__media.is-blocked .news-detail__play {
  display: none;
}
