/* ============================================
   Online Tempo Traveller — Content Styles
   For .ott-page-content .col-lg-8 areas
   Vehicle, Route, and Service pages
   ============================================ */

/* === FORCE LEFT-ALIGN all content text === */
.ott-page-content .col-lg-8 p,
.ott-page-content .col-lg-8 li,
.ott-page-content .col-lg-8 blockquote {
  text-align: left !important;
}

/* === HEADINGS === */
.ott-page-content .col-lg-8 h2 {
  font-family: var(--ott-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ott-secondary);
  border-left: 3px solid var(--ott-primary);
  padding-left: 12px;
  margin: 2rem 0 1rem;
}

.ott-page-content .col-lg-8 h3 {
  font-family: var(--ott-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ott-secondary);
  margin: 1.5rem 0 0.75rem;
}

/* === BULLET LISTS === */
.ott-page-content .col-lg-8 ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.ott-page-content .col-lg-8 ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.ott-page-content .col-lg-8 ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ott-primary);
  font-weight: 700;
}

/* === SPEC TABLES === */
.ott-page-content .col-lg-8 table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.ott-page-content .col-lg-8 table thead th {
  background: var(--ott-secondary);
  color: var(--ott-white);
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
}

.ott-page-content .col-lg-8 table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--ott-border);
}

.ott-page-content .col-lg-8 table tbody tr:nth-child(even) {
  background: var(--ott-light);
}

/* === FEATURE CARDS === */
.ott-feature {
  background: var(--ott-white);
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--ott-shadow);
  transition: var(--ott-transition);
}

.ott-feature:hover {
  box-shadow: var(--ott-shadow-md);
}

.ott-feature .ott-feature-icon {
  font-size: 1.75rem;
  color: var(--ott-primary);
  margin-bottom: 0.5rem;
}

.ott-feature h4 {
  font-family: var(--ott-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ott-secondary);
  margin-bottom: 0.35rem;
}

.ott-feature p {
  font-size: 0.9rem;
  color: var(--ott-text-light);
  margin: 0;
}

/* === CTA BUTTONS === */
.ott-content-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ott-transition);
  border: none;
  cursor: pointer;
}

.ott-content-cta:hover {
  background: var(--ott-primary-dark);
  color: var(--ott-primary-contrast);
  transform: translateY(-1px);
  box-shadow: var(--ott-shadow-md);
}

/* === BLOCKQUOTES === */
.ott-page-content .col-lg-8 blockquote {
  background: var(--ott-primary-light);
  border-left: 4px solid var(--ott-primary);
  border-radius: 0 var(--ott-radius) var(--ott-radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  color: var(--ott-text);
}

/* === CONTACT BLOCK === */
.ott-contact-block {
  background: var(--ott-white);
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius);
  padding: 1.25rem;
  box-shadow: var(--ott-shadow);
}

.ott-contact-block .ott-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.ott-contact-block .ott-contact-item:last-child {
  margin-bottom: 0;
}

.ott-contact-block .ott-contact-item i {
  color: var(--ott-primary);
  font-size: 1.15rem;
  margin-top: 2px;
}

/* === IMAGE CAPTIONS === */
.ott-page-content .col-lg-8 figure {
  margin: 1.25rem 0;
}

.ott-page-content .col-lg-8 figcaption {
  font-size: 0.8rem;
  color: var(--ott-text-light);
  text-align: center;
  margin-top: 6px;
}

/* === YOUTUBE EMBEDS === */
.ott-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--ott-radius);
  margin: 1.25rem 0;
}

.ott-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === RESPONSIVE === */
@media (max-width: 767.98px) {
  .ott-page-content .col-lg-8 h2 { font-size: 1.3rem; }
  .ott-page-content .col-lg-8 h3 { font-size: 1.1rem; }

  .ott-page-content .col-lg-8 table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ott-feature { padding: 1rem; }

  .ott-content-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
  }
}
