/* ========================================
   สล็อตเว็บตรงไม่ผ่านเอเย่นต์ 777 — santabarbaranightmarket.com
   Theme: Lucky Crimson + Imperial Gold + Deep Burgundy
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #1A0A0F;
  --color-secondary: #FFD700;
  --color-accent: #FF3B3B;
  --color-bg: #0B0608;
  --color-surface: rgba(90,20,30,0.55);
  --color-text: #FFFFFF;
  --color-bg-secondary: #120509;
  --color-bg-card: #1C0C12;
  --color-primary-glow: #FF3B3B;
  --color-text-muted: #C8A0A8;
  --color-border: rgba(255,59,59,0.18);
  --color-border-gold: rgba(255,215,0,0.25);
  --font-main: 'Kanit', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 20px rgba(255,59,59,0.25);
  --shadow-gold: 0 0 20px rgba(255,215,0,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --transition: all 0.28s ease;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100%;
}
img, video, iframe { max-width: 100%; height: auto; }
img { display: block; border-radius: var(--radius-md); }
a { color: var(--color-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { padding-left: 1.5rem; }
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}
p { margin-bottom: 1rem; }

/* --- Layout Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,6,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.site-logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.35));
}
@media (max-width: 640px) {
  .site-logo img { height: 44px; }
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--color-secondary);
  background: rgba(255,215,0,0.1);
}

/* Header CTA Button */
.btn-header-cta {
  background: linear-gradient(135deg, #FF3B3B, #C0001A);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  text-decoration: none;
}
.btn-header-cta:hover {
  background: linear-gradient(135deg, #FF5F5F, #FF3B3B);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,59,59,0.45);
  color: #fff !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.2rem;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-secondary), #E6B800);
  color: #1A0A0F !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  text-align: center;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.55);
  background: linear-gradient(135deg, #FFE033, var(--color-secondary));
  color: #1A0A0F !important;
}

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-secondary) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-cta-outline:hover {
  background: var(--color-secondary);
  color: #1A0A0F !important;
  transform: translateY(-2px);
}

.btn-cta-red {
  display: inline-block;
  background: linear-gradient(135deg, #FF3B3B, #C0001A);
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,59,59,0.35);
}
.btn-cta-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,59,59,0.5);
  color: #fff !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11,6,8,0.88) 0%, rgba(26,10,15,0.75) 50%, rgba(11,6,8,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #C0001A);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-content h1 .highlight {
  color: var(--color-secondary);
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--color-bg-secondary);
}
.section-dark {
  background: linear-gradient(135deg, #1A0A0F 0%, #0B0608 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}
.section-title .highlight {
  color: var(--color-secondary);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-badge {
  display: inline-block;
  background: rgba(255,59,59,0.15);
  border: 1px solid rgba(255,59,59,0.3);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 8px 32px rgba(255,59,59,0.15);
  transform: translateY(-3px);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ========================================
   FEATURE GRIDS
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.two-col img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ========================================
   PROMOTION CARDS
   ======================================== */
.promo-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(255,215,0,0.45);
}
.promo-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }
.promo-card-body { padding: 24px; }
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #C0001A);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.promo-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.promo-card-body p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 16px; }

/* ========================================
   REVIEW / TESTIMONIAL
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.review-stars { color: var(--color-secondary); font-size: 1rem; margin-bottom: 8px; }
.review-text { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--color-secondary); }

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  background: var(--color-bg-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--color-accent); }
.faq-answer {
  padding: 18px 24px;
  background: rgba(26,10,15,0.6);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   STEPS / PROCESS
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #C0001A);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 8px; }
.step-card p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* ========================================
   TABLE
   ======================================== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--color-accent);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.data-table tr:hover td { background: rgba(255,59,59,0.07); }

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */
.login-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.login-hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 0;
}
.login-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11,6,8,0.9) 0%, rgba(26,10,15,0.8) 100%);
}
.login-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.login-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.login-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26,10,15,0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}

/* ========================================
   BLOG / ARCHIVE STYLES
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,59,59,0.15);
  border-color: rgba(255,215,0,0.3);
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 0; }
.blog-card-body { padding: 20px; }
.blog-cat {
  display: inline-block;
  background: rgba(255,59,59,0.15);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body p { color: var(--color-text-muted); font-size: 0.88rem; margin-bottom: 14px; }
.blog-meta { font-size: 0.8rem; color: var(--color-text-muted); }

/* Blog post content */
.blog-post-hero { margin-bottom: 40px; }
.blog-post-hero img { width: 100%; height: auto; max-height: 450px; object-fit: cover; }
.blog-content { max-width: 820px; margin: 0 auto; }
.blog-content h2 { font-size: 1.5rem; margin: 36px 0 16px; color: var(--color-secondary); }
.blog-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--color-accent); }
.blog-content p { color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 1.2rem; }
.blog-content ul, .blog-content ol { margin-bottom: 1.2rem; color: rgba(255,255,255,0.8); }
.blog-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-content a { color: var(--color-secondary); }
.blog-content a:hover { color: var(--color-accent); }
.blog-related { margin-top: 48px; }
.blog-related h3 { color: var(--color-secondary); margin-bottom: 20px; }

/* ========================================
   HIGHLIGHT BOX
   ======================================== */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,59,59,0.1), rgba(255,215,0,0.08));
  border: 1px solid rgba(255,215,0,0.25);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: rgba(255,255,255,0.9); }

/* ========================================
   ICON GRID
   ======================================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.icon-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.icon-item .icon { font-size: 2rem; margin-bottom: 10px; }
.icon-item .icon-label { font-size: 0.9rem; font-weight: 600; color: var(--color-secondary); }

/* ========================================
   CTA SECTION / BANNER
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #1A0A0F 0%, #2D0A12 50%, #1A0A0F 100%);
  border-top: 1px solid rgba(255,59,59,0.2);
  border-bottom: 1px solid rgba(255,59,59,0.2);
  text-align: center;
  padding: 72px 20px;
}
.cta-section h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 12px; }
.cta-section p { color: var(--color-text-muted); margin-bottom: 28px; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #070305;
  border-top: 1px solid rgba(255,59,59,0.12);
  padding: 52px 0 28px;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  margin-bottom: 12px;
  line-height: 0;
}
.footer-brand-name img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.35));
}
.footer-desc { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--color-secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,59,59,0.12);
  padding-top: 20px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.footer-disclaimer { font-size: 0.78rem; color: rgba(200,160,168,0.6); margin-top: 8px; }

/* ========================================
   RIBBON / BADGE STRIPS
   ======================================== */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.badge-item {
  background: rgba(255,59,59,0.12);
  border: 1px solid rgba(255,59,59,0.25);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge-item.gold {
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.25);
  color: var(--color-secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .features-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .login-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11,6,8,0.98);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 20px;
    z-index: 99;
  }
  .menu-toggle { display: block; }
  .btn-header-cta { font-size: 0.82rem; padding: 7px 14px; }
  .site-header { position: relative; }
  .hero-content { padding: 60px 20px; }
  .hero-content h1 { font-size: 1.6rem; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-grid-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .two-col { gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .login-hero-grid { gap: 24px; }
  .login-hero-content { padding: 40px 16px; }
  .login-hero-grid .btn-cta,
  .login-hero-grid .btn-cta-outline { width: 100%; text-align: center; }
  .login-form-wrapper { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.35rem; }
  .section-title { font-size: 1.3rem; }
  .login-form-wrapper { padding: 24px 18px; }
  .data-table { font-size: 0.85rem; }
  .data-table td, .data-table th { padding: 8px 10px; }
}

/* Mobile overflow safety */
@media (max-width: 768px) {
  .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .two-col img { max-width: 100%; }
}
