/*
Theme Name: Thiraimax Child
Template: astra
Version: 1.2
*/

:root {
  --tx-accent: #e63950;
  --tx-accent2: #d6336c;
  --tx-bg: #f4f6fc;
  --tx-card-bg: #ffffff;
  --tx-text: #1a1a2e;
  --tx-muted: #6b7280;
}

.thiraimax-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}

.thiraimax-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.thiraimax-card {
  display: block;
  text-decoration: none;
  color: var(--tx-text);
  background: var(--tx-card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.thiraimax-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.thiraimax-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #ddd;
  overflow: hidden;
}
.thiraimax-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thiraimax-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--tx-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.thiraimax-card-title {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
}

/* Single episode page */

.thiraimax-episode-header { margin-bottom: 20px; }
.thiraimax-eyebrow {
  display: inline-block;
  background: var(--tx-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.thiraimax-episode-header h1 {
  font-size: 34px;
  margin: 8px 0;
}
.thiraimax-subtitle { color: var(--tx-muted); font-size: 17px; }
.thiraimax-accent { color: var(--tx-accent); font-weight: 700; }

.thiraimax-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.thiraimax-meta-item { display: flex; flex-direction: column; gap: 2px; }
.thiraimax-meta-label { font-size: 11px; text-transform: uppercase; color: var(--tx-muted); letter-spacing: 0.5px; }
.thiraimax-meta-value { font-weight: 700; }

.thiraimax-main-image {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
  aspect-ratio: 16/9;
  background: #ddd;
  text-decoration: none;
}
.thiraimax-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thiraimax-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.thiraimax-main-image:hover .thiraimax-play-overlay { opacity: 1; }

.thiraimax-nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.thiraimax-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--tx-text);
}
.thiraimax-nav-item:not(.thiraimax-nav-disabled):hover { background: var(--tx-bg); }
.thiraimax-nav-disabled { opacity: 0.4; }
.thiraimax-nav-arrow { font-size: 11px; font-weight: 700; color: var(--tx-accent); letter-spacing: 0.5px; }
.thiraimax-nav-next .thiraimax-nav-arrow { text-align: right; }
.thiraimax-nav-next { text-align: right; align-items: flex-end; }
.thiraimax-nav-title { font-weight: 600; }
.thiraimax-nav-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--tx-accent2), var(--tx-accent));
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.thiraimax-nav-all span { font-weight: 400; font-size: 11px; opacity: 0.9; }

.thiraimax-description { color: var(--tx-muted); line-height: 1.6; margin: 20px 0; }

.thiraimax-info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.thiraimax-episode-details, .thiraimax-about-series {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.thiraimax-episode-details h3, .thiraimax-about-series h3 { margin-top: 0; color: var(--tx-accent); }
.thiraimax-episode-details ul { list-style: none; padding: 0; margin: 0; }
.thiraimax-episode-details li { padding: 6px 0; }
.thiraimax-episode-details li strong { display: inline-block; width: 90px; color: var(--tx-muted); font-weight: 600; }
.thiraimax-about-series p { color: var(--tx-muted); line-height: 1.6; margin: 0; }

.thiraimax-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.thiraimax-tag {
  display: inline-block;
  border: 1.5px solid var(--tx-accent);
  color: var(--tx-accent);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.thiraimax-keep-watching { margin-top: 40px; }
.thiraimax-keep-watching h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--tx-muted); }

body { background: var(--tx-bg); }

@media (max-width: 640px) {
  .thiraimax-nav-bar { grid-template-columns: 1fr; }
  .thiraimax-nav-next { text-align: left; align-items: flex-start; }
  .thiraimax-nav-next .thiraimax-nav-arrow { text-align: left; }
  .thiraimax-info-columns { grid-template-columns: 1fr; }
}


/* ============ SINGLE EPISODE — RICH LAYOUT ============ */
.thiraimax-single { max-width: 1300px; }

.tx-hero {
  background: linear-gradient(135deg, #fff 0%, #fff7f9 100%);
  border: 1px solid #fde4ea;
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 28px;
}
.tx-eyebrow {
  display: inline-block;
  background: var(--tx-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 7px 16px;
  border-radius: 999px;
}
.tx-hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 18px 0 6px;
  color: #12121c;
}
.tx-hero-sub {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #12121c;
}
.tx-accent { color: var(--tx-accent); }
.tx-lede { color: #555; margin: 0 0 14px; font-size: 16px; }
.tx-episode-blurb { color: #555; line-height: 1.7; margin: 0 0 26px; }
.tx-episode-blurb strong { color: #3f3f4a; }

.tx-factbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  background: #fff;
  border: 1px solid #f1e3e7;
  border-radius: 14px;
  overflow: hidden;
}
.tx-fact {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid #f4eaee;
}
.tx-fact:last-child { border-right: 0; }
.tx-fact-icon { color: var(--tx-accent); font-size: 20px; line-height: 1; }
.tx-fact-label { font-size: 11px; letter-spacing: .8px; color: #9aa0ab; margin-top: 10px; font-weight: 700; }
.tx-fact-value { font-weight: 800; margin-top: 6px; color: #12121c; font-size: 15px; }

.tx-source-pill {
  display: block;
  width: fit-content;
  margin: 30px auto 14px;
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 9px 22px;
  border-radius: 10px;
}
.tx-player {
  display: block;
  position: relative;
  max-width: 780px;
  margin: 0 auto 30px;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 10px 34px rgba(0,0,0,.14);
}
.tx-player img { width: 100%; height: 100%; object-fit: cover; }
.tx-hd-badge, .tx-ep-badge {
  position: absolute; top: 16px;
  background: var(--tx-accent); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .5px;
  padding: 6px 14px; border-radius: 8px;
}
.tx-hd-badge { left: 16px; }
.tx-ep-badge { right: 16px; }
.tx-play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.28);
  border: 3px solid rgba(255,255,255,.85);
  border-radius: 50%;
  color: #fff; font-size: 26px;
  backdrop-filter: blur(3px);
  transition: transform .15s ease, background .15s ease;
}
.tx-player:hover .tx-play-btn { transform: scale(1.08); background: rgba(255,255,255,.42); }

.tx-continue {
  background: #fff;
  border: 1px solid #fde4ea;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 26px;
  position: relative;
}
.tx-continue::before {
  content: "";
  position: absolute; top: 0; left: 18px; right: 18px; height: 3px;
  background: linear-gradient(90deg, var(--tx-accent), #a855f7, #ec4899);
  border-radius: 999px;
}
.tx-continue-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 10px;
}
.tx-continue-pill {
  background: var(--tx-accent); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .5px;
  padding: 7px 16px; border-radius: 999px;
}
.tx-continue-series { font-weight: 800; color: #12121c; }

.tx-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.tx-nav-side {
  display: flex; flex-direction: column; gap: 5px;
  background: #fff; border: 1px solid #f0e6ea;
  border-radius: 12px; padding: 16px 18px;
  text-decoration: none; color: #12121c;
  transition: box-shadow .15s ease;
}
.tx-nav-side:hover { box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.tx-nav-right { text-align: right; align-items: flex-end; }
.tx-nav-off { opacity: .45; }
.tx-nav-label { font-size: 11px; font-weight: 800; letter-spacing: .6px; color: var(--tx-accent); }
.tx-nav-main { font-size: 19px; font-weight: 800; }
.tx-nav-date { font-size: 12px; color: #9aa0ab; font-weight: 600; }

.tx-nav-all {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, #a21caf, #e11d48);
  border-radius: 12px; padding: 16px;
  color: #fff; text-decoration: none;
}
.tx-nav-all-title { font-weight: 800; font-size: 14px; letter-spacing: .3px; }
.tx-nav-all-sub { font-size: 12px; opacity: .92; margin-top: 3px; }

.tx-seo-para { color: #5a5a66; line-height: 1.8; margin: 0 0 28px; }

.tx-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}
.tx-panel {
  background: #fff;
  border: 1px solid #fde4ea;
  border-radius: 18px;
  padding: 26px 30px;
}
.tx-panel h3 { margin: 0 0 18px; color: var(--tx-accent); font-size: 22px; font-weight: 800; }
.tx-panel p { color: #5a5a66; line-height: 1.75; margin: 0; }
.tx-dl { list-style: none; padding: 0; margin: 0; }
.tx-dl li { display: grid; grid-template-columns: 12px 92px 14px 1fr; align-items: baseline; padding: 7px 0; }
.tx-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tx-accent); }
.tx-dl strong { font-weight: 700; color: #12121c; }
.tx-colon { color: #9aa0ab; }
.tx-dl span:last-child { color: #5a5a66; }

.tx-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.tx-chip {
  border: 1.5px solid #f5c2ce; color: var(--tx-accent);
  background: #fff; border-radius: 999px;
  padding: 9px 20px; font-size: 13px; font-weight: 700;
  text-decoration: none;
}
a.tx-chip:hover { background: var(--tx-accent); color: #fff; border-color: var(--tx-accent); }

.tx-keep-head { font-size: 13px; letter-spacing: 1.2px; color: #b9414f; font-weight: 800; margin-bottom: 16px; }

@media (max-width: 880px) {
  .tx-hero { padding: 26px 22px; }
  .tx-hero-title { font-size: 28px; }
  .tx-hero-sub { font-size: 19px; }
  .tx-nav-grid { grid-template-columns: 1fr; }
  .tx-nav-right { text-align: left; align-items: flex-start; }
  .tx-cols { grid-template-columns: 1fr; }
  .tx-fact { border-right: 0; border-bottom: 1px solid #f4eaee; }
}

/* Full-bleed: hero card, factbar, and player/nav area too, matching the
   two sections already widened. */
.tx-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 880px) {
  .tx-hero { padding: 26px 20px; }
}

/* Category banner */
.thiraimax-cat-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 24px 0 30px;
  max-height: 320px;
}
.thiraimax-cat-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.thiraimax-cat-banner-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}
.thiraimax-cat-banner-overlay h1 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}
.thiraimax-cat-title {
  margin: 24px 0 20px;
  font-size: 28px;
  font-weight: 800;
}
@media (max-width: 640px) {
  .thiraimax-cat-banner img { height: 200px; }
  .thiraimax-cat-banner-overlay h1 { font-size: 22px; }
}

/* OTT-style homepage rows */
.thiraimax-row { margin: 0 0 40px; }
.thiraimax-row-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.thiraimax-row-title { font-size: 20px; font-weight: 800; }
.thiraimax-row-seeall {
  font-size: 13px; font-weight: 700; color: var(--tx-accent, #7c3aed);
  white-space: nowrap;
}
.thiraimax-row-track {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x proximity;
}
.thiraimax-row-track::-webkit-scrollbar { height: 6px; }
.thiraimax-row-track::-webkit-scrollbar-thumb { background: #e2e2e2; border-radius: 999px; }
.thiraimax-row-card {
  flex: 0 0 auto; width: 190px; scroll-snap-align: start;
}
.thiraimax-row-card .thiraimax-card-thumb { aspect-ratio: 3/4; }
@media (max-width: 640px) {
  .thiraimax-row-card { width: 140px; }
  .thiraimax-row-title { font-size: 17px; }
}

/* Search icon + full-screen overlay */
.tx-search-icon-btn {
  position: fixed; top: 22px; right: 24px; z-index: 99998;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border: 1.5px solid #e2e2e2; border-radius: 999px;
  background: #fff; color: #12121c; cursor: pointer;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.tx-search-icon-btn:hover { border-color: #7c3aed; color: #7c3aed; }
.tx-search-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 10, 15, 0.94);
  display: flex; flex-direction: column;
}
.tx-search-close {
  position: absolute; top: 22px; right: 24px;
  width: 40px; height: 40px; border: none; background: transparent;
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.tx-search-center {
  margin: auto; width: 100%; max-width: 720px; padding: 0 24px;
}
.tx-search-inputrow {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 999px;
  padding: 8px 8px 8px 28px;
}
.tx-search-inputrow input {
  flex-grow: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: 20px;
}
.tx-search-inputrow input::placeholder { color: rgba(255,255,255,0.45); }
.tx-search-go {
  width: 48px; height: 48px; border-radius: 999px; border: none;
  background: #2563eb; display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.tx-search-results { margin-top: 28px; text-align: center; }
.tx-search-result {
  display: block; padding: 14px; font-size: 22px; font-weight: 700;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tx-search-result:hover { color: #93c5fd; }
.tx-search-empty { color: rgba(255,255,255,0.5); font-size: 16px; padding: 14px; }
@media (max-width: 640px) {
  .tx-search-inputrow input { font-size: 17px; }
  .tx-search-result { font-size: 18px; }
}

/* Clear the WP admin bar (32px) when logged in as admin */
body.admin-bar .tx-search-icon-btn { top: 54px; }
body.admin-bar .tx-search-close { top: 54px; }
.tx-search-close { z-index: 99999; }

/* Fix: [hidden] attribute must win over the flex display rule */
.tx-search-overlay[hidden] { display: none !important; }

/* Mobile: move search out of the header entirely, avoid clashing with the menu toggle */
@media (max-width: 768px) {
  .tx-search-icon-btn {
    top: auto;
    bottom: 20px;
    right: 20px;
    padding: 12px 14px;
  }
  .tx-search-icon-btn span { display: none; }
  body.admin-bar .tx-search-icon-btn { top: auto; bottom: 20px; }
}

/* Movies page — poster grid */
.tx-movies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 26px 20px; margin-top: 20px; }
.tx-movie-card { display: block; color: #12121c; }
.tx-movie-poster { aspect-ratio: 2/3; border-radius: 14px; overflow: hidden; background: #f0ede8; transition: transform .2s ease, box-shadow .2s ease; }
.tx-movie-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tx-movie-card:hover .tx-movie-poster { transform: scale(1.04); box-shadow: 0 16px 40px rgba(124,58,237,.25); }
.tx-movie-name { margin-top: 10px; font-size: 15px; font-weight: 700; line-height: 1.35; }
.tx-movies-empty { color: #999; }
@media (max-width: 640px) {
  .tx-movies-grid { grid-template-columns: repeat(3, 1fr); gap: 16px 10px; }
}

/* ===== Mobile redesign: category & movies pages ===== */
@media (max-width: 640px) {

  .thiraimax-wrap {
    padding: 0 0 32px;
  }

  /* Page title area gets a gradient band instead of plain text */
  .thiraimax-cat-title,
  .tx-movies-title {
    display: none;
  }

  .thiraimax-mobile-titlebar {
    display: block;
    background: linear-gradient(135deg, #6d28d9 0%, #db2777 50%, #f97316 100%);
    color: #fff;
    padding: 22px 20px 26px;
    margin: 0 0 20px;
    border-radius: 0 0 22px 22px;
    font-size: 24px;
    font-weight: 800;
  }

  .thiraimax-cat-banner {
    margin: 0 16px 20px;
    border-radius: 16px;
  }

  .thiraimax-grid,
  .tx-movies-grid {
    padding: 0 16px;
    gap: 16px 12px;
  }

  /* Shows/episodes: single full-width feed card */
  .thiraimax-grid { grid-template-columns: 1fr; gap: 22px; padding: 0 16px; }
  .tx-movies-grid { grid-template-columns: repeat(3, 1fr); }

  .thiraimax-card {
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(20,20,19,0.08);
    overflow: hidden;
  }
  .tx-movie-card { border-radius: 14px; }

  .thiraimax-grid .thiraimax-card-thumb {
    border-radius: 0;
    aspect-ratio: 16/9;
  }
  .tx-movie-poster { border-radius: 14px; }

  .thiraimax-grid .thiraimax-card-title {
    font-size: 19px;
    font-weight: 800;
    padding: 14px 16px 10px;
  }

  .thiraimax-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 16px;
  }
  .tx-movie-card .thiraimax-card-pills { display: none; }

  .tx-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }
  .tx-pill-cat {
    background: linear-gradient(135deg, #6d28d9, #2563eb);
    color: #fff;
  }
  .tx-pill-date {
    background: #f0ede8;
    color: #44403c;
  }
  .tx-pill-year {
    background: #fce7f3;
    color: #be185d;
  }

  .thiraimax-grid .thiraimax-card-hd {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--tx-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 8px;
  }

  .thiraimax-badge {
    background: linear-gradient(135deg, #6d28d9, #db2777);
    font-size: 10px;
    padding: 4px 10px;
  }

  .thiraimax-card-title,
  .tx-movie-name {
    font-size: 13px;
    padding: 8px 2px 0;
  }
}

/* Movies CTA banner (homepage) */
.thiraimax-movies-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 28px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}
.thiraimax-movies-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.thiraimax-movies-cta-label {
  font-size: 1.3rem;
  font-weight: 700;
}
.thiraimax-movies-cta-sub {
  font-size: 0.9rem;
  opacity: 0.8;
}
.thiraimax-movies-cta-thumbs {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.thiraimax-movies-cta-thumbs img {
  width: 70px;
  height: 93px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .thiraimax-movies-cta { flex-direction: column; align-items: flex-start; }
  .thiraimax-movies-cta-thumbs img { width: 56px; height: 74px; }
}
