/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Poppins:wght@400;600;700;800&display=swap');

/* --- Variables: Child-Friendly Palette --- */
:root {
/* Primary Accent: Fiery Orange (#FD4D0A) */
--color-primary-accent: #FD4D0A;
/* Secondary Accent: Yellow (#FFBC00) */
--color-secondary-accent: #FFBC00; 

/* Eggshell Background (#FEF6EC) */
--color-bg-light: #FEF6EC;
--color-bg-white: #ffffff;

/* User specified Green for accent/logo (#4D9222) */
--color-accent-green: #4D9222;

/* Standard text color (for readability) */
--color-text-dark: #333;
--color-text-light: #f4f4f4;

/* Fonts */
--font-family-title: 'Chelsea Market', cursive;
--font-family-header: 'Poppins', sans-serif;
--font-family-paragraph: 'Poppins', sans-serif;

/* Spacing and other variables remain */
--spacing-lg: 4rem;
--spacing-md: 2rem;
--spacing-sm: 1rem;
--border-radius-lg: 16px;
--border-radius-sm: 8px;
--shadow-pop: 0 10px 30px rgba(0, 0, 0, 0.15);

/* Logo Colors updated to match new palette */
--color-logo-k: var(--color-primary-accent); /* Fiery Orange */
--color-logo-a1: var(--color-secondary-accent); /* Yellow */
--color-logo-y: var(--color-accent-green); /* Green */
--color-logo-a2: #0094E8; /* Blue */
}

/* --- Base Styles --- */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font-family-paragraph);
line-height: 1.6;
color: var(--color-text-dark);
background-color: var(--color-bg-light); /* Eggshell background */
}

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--spacing-sm);
}

h1,
h2,
h3 {
font-weight: 700;
margin-bottom: var(--spacing-sm);
}

/* General H2 Styling (used for section titles) */
h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: var(--spacing-lg);
color: var(--color-primary-accent); /* Fiery Orange */
font-family: var(--font-family-header); /* Poppins Bold */
}

.title-with-icon {
display: flex;
align-items: center;
justify-content: center;
}

.title-with-icon i {
margin-right: 15px;
font-size: 0.9em;
color: var(--color-primary-accent);
}

.accent {
color: var(--color-primary-accent);
}

.section {
padding: var(--spacing-lg) 0;
}

/* Sections use white background by default */
.bg-light {
background-color: var(--color-bg-white);
}

.text-center {
text-align: center;
}

/* --- Multicolored Logo Styling --- */
.logo-link {
text-decoration: none;
color: inherit;
z-index: 2;
}

.logo {
font-size: 1.8rem;
font-weight: 800;
letter-spacing: -1px;
cursor: pointer;
}

.logo span {
transition: transform 0.2s;
display: inline-block;
}

.logo span:hover {
transform: translateY(-3px);
}

/* Apply specific logo colors from variables */
.logo-k {
color: var(--color-logo-k);
}

.logo-a1 {
color: var(--color-logo-a1);
}

.logo-y {
color: var(--color-logo-y);
}

.logo-a2 {
color: var(--color-logo-a2);
}


/* --- Welcome Banner Styling: Yellow Background --- */
.welcome-banner {
/* CHANGE THIS LINE to use the dark footer color for maximum contrast */
background-color: #34495E; 
padding: 20px 0;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.big-sign {
font-family: var(--font-family-title); /* Chelsea Market */
font-size: 6vw;
max-width: 900px;
margin: 0 auto;
font-weight: 800;
color: var(--color-text-light);
letter-spacing: 2px;
display: inline-block;
}

.sign-text {
color: var(--color-text-light); 
}

/* FIX: Apply individual logo colors for KAYA banner text */
.sign-k {
    color: var(--color-logo-k);
}
.sign-a1 {
    color: var(--color-logo-a1);
}
.sign-y {
    color: var(--color-logo-y);
}
.sign-a2 {
    color: var(--color-logo-a2);
}

/* FIX: Multi-color Exclamation Mark for Welcome Banner (using linear gradient for better narrow rendering) */
.sign-exclamation {
    /* Apply a linear gradient for clean, vertical stripes */
    background: linear-gradient(
        to bottom,
        var(--color-logo-k) 0%,
        var(--color-logo-k) 25%,
        var(--color-logo-a1) 25%,
        var(--color-logo-a1) 50%,
        var(--color-logo-y) 50%,
        var(--color-logo-y) 75%,
        var(--color-logo-a2) 75%,
        var(--color-logo-a2) 100%
    );
    /* Clip gradient to the text shape and make text transparent */
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    color: transparent; 
}


/* New: Tagline for Rules Page */
.tagline-rules {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin-top: 10px;
}

/* --- Header & Navigation --- */
.header {
background-color: var(--color-bg-white);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
}

.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-menu {
display: flex;
gap: var(--spacing-md);
}

.nav-menu a {
text-decoration: none;
color: var(--color-text-dark);
font-weight: 600;
margin-left: var(--spacing-md);
transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active-link { /* Active link style for the current page */
color: var(--color-primary-accent);
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.8rem;
cursor: pointer;
color: var(--color-primary-accent);
}


/* --- Buttons --- */
.btn {
display: inline-block;
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
border: none;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
}

.btn-primary {
background-color: var(--color-primary-accent); /* Fiery Orange */
color: var(--color-text-light);
box-shadow: 0 8px 15px rgba(253, 77, 10, 0.4);
}

.btn-secondary {
background-color: var(--color-secondary-accent); /* Yellow */
color: var(--color-text-dark); /* Dark text for contrast on yellow */
box-shadow: 0 8px 15px rgba(255, 188, 0, 0.4);
}

.btn:hover {
transform: translateY(-4px);
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.mt-3 {
  margin-top: 1rem;
}

/* --- Hero Section and Placeholders --- */
.hero {
padding: 4rem 0;
background: transparent;
}

.hero-content {
display: flex;
align-items: center;
gap: var(--spacing-lg);
}

.hero-text {
flex: 1;
}

.hero-text h1 {
font-family: var(--font-family-title); /* Chelsea Market */
font-size: 3.8rem;
line-height: 1.1;
margin-bottom: 20px;
}

.hero-image {
flex: 1;
min-height: 250px; /* Reduced to match placeholder box */
}

.placeholder-box {
width: 100%;
height: 100%;
min-height: 220px; /* SHORTER HEIGHT for rectangular, horizontal look */
background-color: #fff4e0; /* Lighter shade of eggshell */
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-pop);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-primary-accent);
font-weight: 600;
font-size: 1.2rem;
padding: 20px;
text-align: center;
border: 3px dashed var(--color-primary-accent);
overflow: hidden; 
}

/* UNIVERSAL RULE: Ensures all images inside a placeholder box fit the smaller container */
.placeholder-box img {
max-width: 100%; 
max-height: 100%;
width: auto;
height: auto;
object-fit: contain; /* Scales image down to fit without cropping */
display: block;
}

/* --- Video Integration Styles (New) --- */
.video-section {
padding: var(--spacing-lg) 0;
text-align: center;
}

.video-container {
max-width: 900px;
margin: var(--spacing-md) auto;
/* Aspect Ratio Box (16:9) for responsive video sizing */
position: relative;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100) */
height: 0;
overflow: hidden;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-pop);
border: 5px solid var(--color-primary-accent); /* Fun border matching theme */
}

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

/* New: Style for the video placeholder box */
.video-placeholder {
  height: auto;
  padding-bottom: 0; /* Override 16:9 padding for text content */
  min-height: 350px;
}
.video-box-text {
  flex-direction: column;
  padding: 30px;
}
.video-box-text p {
  margin-top: 15px;
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.5;
}


/* --- About Us Section --- */
.about-content {
display: flex;
align-items: center;
gap: var(--spacing-lg);
}

.about-image-placeholder {
flex: 1;
min-height: 250px; /* Reduced to match new placeholder height */
}

.about-image-placeholder .placeholder-box {
min-height: 220px; /* SHORTER HEIGHT for rectangular, horizontal look */
background-color: #fffae8; /* Lighter shade of yellow */
color: var(--color-secondary-accent);
border: 3px dashed var(--color-secondary-accent);
}

.about-text {
flex: 1;
padding: 20px;
border-left: 5px solid var(--color-primary-accent);
}

.about-text p {
margin-bottom: var(--spacing-sm);
font-size: 1.1rem;
}

/* --- Game Features Section (Keeping styles in case user adds content back) --- */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-md);
text-align: center;
}

.feature-card {
background-color: var(--color-bg-white);
padding: var(--spacing-md);
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-pop);
transition: transform 0.3s, background-color 0.3s;
}

.feature-card:hover {
transform: translateY(-8px);
background-color: #fffbe6; /* Light hover for card */
}

.feature-icon-circle {
width: 80px;
height: 80px;
margin: 0 auto 15px;
background-color: var(--color-primary-accent); /* Fiery Orange */
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.2rem;
color: white;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Gallery Preview (index.html) --- */
.gallery-grid-preview {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-sm);
margin-bottom: var(--spacing-md);
}


/* --- Contact Section --- */
.contact-content {
max-width: 700px;
margin: 0 auto;
}


.contact-form {
background-color: var(--color-bg-white);
padding: var(--spacing-md);
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-pop);
}

.form-group {
margin-bottom: var(--spacing-sm);
}

.form-group label {
display: block;
font-weight: 600;
margin-bottom: 5px;
color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: var(--border-radius-sm);
font-family: inherit;
transition: border-color 0.3s, box-shadow 0.3s;
}

.btn-submit {
width: 100%;
margin-top: 15px;
font-size: 1.1rem;
}

.form-status {
margin-top: var(--spacing-sm);
text-align: center;
font-weight: 600;
min-height: 20px;
}

/* --- Page Specific Styles for Deep Dive Content & Rules Page --- */

/* Content Blocks (Pitch Block) */
.pitch-block {
background-color: var(--color-bg-white);
padding: 40px;
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-pop);
margin-bottom: 30px;
/* Use Fiery Orange as the main block accent */
border-left: 5px solid var(--color-logo-k); 
}

.pitch-block h2 {
font-size: 2.2rem;
font-weight: 700;
color: var(--color-logo-k); /* Fiery Orange */
margin-top: 0;
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
margin-bottom: 20px;
text-align: left; /* Override general h2 center for block titles */
}

.pitch-block h3 {
font-size: 1.6rem;
color: var(--color-accent-green); /* Green subheadings */
margin-top: 25px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.pitch-block h3 i {
margin-right: 10px;
color: var(--color-logo-k); /* Orange icon color */
}

.pitch-block p, .pitch-block ul, .pitch-block ol {
color: var(--color-text-dark);
font-size: 1.05rem;
}

.pitch-block ul, .pitch-block ol {
padding-left: 20px;
margin-bottom: 20px;
}

/* Default unordered list style */
.pitch-block ul li {
margin-bottom: 10px;
padding-left: 0;
position: relative;
list-style: disc; /* Use default disc */
}

.pitch-block ul li::before {
content: none; /* Remove custom bullet for general list */
}

/* Custom list style for Card Effects */
.card-effect-list {
list-style: none;
padding-left: 0;
}
.card-effect-list li {
margin-bottom: 15px;
padding-left: 1.5rem;
position: relative;
font-weight: 600;
}
.card-effect-list li::before {
content: "\f058"; /* Check-circle icon */
font-family: 'Font Awesome 6 Free';
font-weight: 900;
color: var(--color-secondary-accent); /* Yellow checkmark */
display: inline-block;
width: 1em;
margin-left: -1.5em;
position: absolute;
left: 0;
}

/* Stat Boxes */
.stat-box {
display: flex;
justify-content: space-around;
gap: 20px;
margin: 30px 0;
text-align: center;
}
.stat-item {
padding: 20px;
background-color: #fff8e8; /* Very light yellow/orange background for stats */
border-radius: 8px;
flex: 1;
border: 2px solid var(--color-secondary-accent); /* Yellow border */
transition: all 0.3s ease;
}
.stat-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(253, 77, 10, 0.15);
}
.stat-item .value {
font-size: 2.5rem;
font-weight: 800;
color: var(--color-logo-k); /* Fiery Orange */
line-height: 1.1;
}
.stat-item .label {
font-size: 1rem;
color: var(--color-text-dark);
margin-top: 5px;
}

/* Quote Block Styling (used for Special Rule) */
blockquote {
border-left: 5px solid var(--color-accent-green) !important; /* Green border for quotes */
background-color: #f7fff5; /* Very light green background */
padding: 15px 25px;
margin: 30px 0;
font-style: italic;
border-radius: var(--border-radius-sm);
}
blockquote i {
color: var(--color-accent-green) !important; /* Green quote marks */
}
blockquote.special-rule {
text-align: center;
font-style: normal;
}
blockquote.special-rule p {
margin: 0;
font-size: 1.1rem;
font-style: italic;
}
blockquote.special-rule strong {
font-size: 1.3rem;
display: block;
margin-bottom: 5px;
}

/* Final Pitch Block Accent (using Yellow for variety/secondary accent) */
.pitch-block.text-center {
border-left: 5px solid var(--color-secondary-accent) !important; 
}

/* --- Footer --- */
.footer {
background-color: #34495E;
/* Dark blue/gray */
color: #ECF0F1;
padding: var(--spacing-md) 0;
font-size: 0.9rem;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--spacing-md);
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
grid-column: 1 / -1;
text-align: center;
margin-top: 20px;
font-size: 0.85rem;
}

.footer a {
color: var(--color-text-light); 
text-decoration: none; 
transition: color 0.3s;
}

/* Hover State: Change to Green */
.footer a:hover {
color: var(--color-accent-green); 
}

/* Visited State: Change to Green-Yellow */
.footer a:visited {
color: #ADFF2F; 
}


.footer-link-group {
list-style: none;
padding: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {

.hero-content,
.about-content {
flex-direction: column;
text-align: center;
}

.hero-image {
order: -1;
margin-bottom: var(--spacing-md);
}

.about-text {
border-left: none;
border-top: 5px solid var(--color-primary-accent);
padding-top: 20px;
}

.hero-text h1 {
font-size: 3rem;
}

.big-sign {
font-size: 3rem;
}

.title-with-icon {
flex-direction: column;
}

.title-with-icon i {
margin: 0 0 10px 0;
font-size: 2.5rem;
}

.footer-content {
grid-template-columns: repeat(2, 1fr);
}
.pitch-block h2 {
text-align: center;
}
}

@media (max-width: 767px) {

/* Show mobile menu toggle */
.menu-toggle {
display: block;
}

/* Adjust nav-content for mobile: Logo on left, Toggle on right */
.nav-content {
justify-content: space-between;
}

/* Mobile Menu behavior */
.nav-menu {
display: none;
flex-direction: column;
width: 100%;
position: absolute;
top: 60px;
left: 0;
background-color: var(--color-bg-white);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
padding: 10px 0;
z-index: 999;
}

.nav-menu.active {
display: flex;
}

.nav-menu a {
margin: 10px 0;
padding: 10px 0;
border-bottom: 1px solid #eee;
width: 90%;
margin-left: 0;
/* Clear previous desktop margin */
}

.nav-menu a:last-child {
border-bottom: none;
}

.big-sign {
font-size: 8vw;
}

.hero-text h1 {
font-size: 2.2rem;
}

.pitch-block {
padding: 20px;
}
.stat-box {
flex-direction: column;
}
}


/* --- START OF NEW GALLERY STYLES (gallery.html) --- */

/* Ensures the full gallery uses a grid layout with distinct columns */
.full-gallery-grid {
  display: grid;
  /* Two columns for desktop, responsive wrap */
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
  gap: 40px;
  margin-top: var(--spacing-lg);
}

/* Individual gallery items */
.gallery-item-full {
  min-height: auto; /* Remove fixed height for video content */
  display: flex;
  flex-direction: column;
}

/* Enhances the video container style for smaller items */
.gallery-item-full .video-container {
  padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
  height: 0;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Lighter shadow */
  border: 3px solid var(--color-accent-green) !important; /* Green border for variety */
}

/* Custom Caption Styling */
.full-gallery-grid p.caption {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-top: 15px; /* Increase space below video */
  padding: 0 10px;
}

/* Adjust title for gallery page */
.gallery-intro {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* Responsive adjustment for gallery grid */
@media (max-width: 900px) {
  .full-gallery-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
    gap: 30px;
  }
}

/* ======================================================
   LINKTREE CONTACT SECTION (for contact.html)
   ====================================================== */
.linktree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

/* Link buttons match the Kaya button style and palette */
.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 90%;
  max-width: 400px;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-pop);
}

/* Icon inside each button */
.link-btn i {
  font-size: 1.3rem;
}

/* WhatsApp */
.link-btn.whatsapp {
  background-color: #25D366;
}
.link-btn.whatsapp:hover {
  background-color: #1ebe5d;
}

/* Instagram gradient */
.link-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.link-btn.instagram:hover {
  filter: brightness(1.1);
}

/* TikTok black */
.link-btn.tiktok {
  background-color: #000;
}
.link-btn.tiktok:hover {
  background-color: #111;
}

/* Shopify placeholder (disabled) */
.link-btn.shopify {
  background-color: #95bf47;
  opacity: 0.7;
  cursor: not-allowed;
}
.link-btn.shopify.disabled {
  pointer-events: none;
}

/* Hover scaling for all link buttons */
.link-btn:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

/* Small text and icon adjustments for mobile */
@media (max-width: 600px) {
  .link-btn {
    font-size: 1rem;
    padding: 12px 16px;
  }
  .link-btn i {
    font-size: 1.1rem;
  }
}

/* ORDER PAGE STYLES */

/* Order Buttons Container */
.order-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
  margin: auto;
}

/* Big Buttons for Order Page */
.order-btn {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  transition: all 0.25s ease;
}

/* Shopee Button */
.order-btn.shopee {
  background-color: var(--color-primary-accent);
  color: white;
  box-shadow: 0 8px 15px rgba(253, 77, 10, 0.4);
}
.order-btn.shopee:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(253, 77, 10, 0.25);
}

/* International Button */
.order-btn.intl {
  background-color: var(--color-secondary-accent);
  color: var(--color-text-dark);
  opacity: 0.8;
  cursor: not-allowed;
}

/* Section Text */
.order-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Little Badge for Coming Soon */
.coming-soon-badge {
  font-size: 0.9rem;
  margin-top: 4px;
  color: var(--color-logo-a2);
  font-weight: 600;
}

/* --- Homepage Feature Section Tweaks --- */

#why-kaya, .feature-section {
  padding: var(--spacing-lg) 0;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-primary-accent);
}

.feature-card p {
  font-size: 1.05rem;
  color: var(--color-text-dark);
}

.feature-icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  font-size: 1.8rem;
}

/* Make all media videos same size and 2x1 layout */
.media-grid-2x1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
}



.media-grid-2x1 .gallery-item-full video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* 3rd video centered same size */
.media-grid-2x1 .gallery-item-full:nth-child(3) {
  grid-column: 1 / span 2;
  justify-self: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .media-grid-2x1 {
    grid-template-columns: 1fr;
  }
}

.media-grid-2x1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
}

.media-grid-2x1 .gallery-item-full {
  width: 100%;
  max-width: 350px;  /* ✅ medium size */
}

/* Make videos same medium size */
.media-grid-2x1 .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

/* 3rd video centered */
.media-grid-2x1 .gallery-item-full:nth-child(3) {
  grid-column: 1 / span 2;
  justify-self: center;
}

/* Mobile view stacks */
@media (max-width: 768px) {
  .media-grid-2x1 {
    grid-template-columns: 1fr;
  }

  .media-grid-2x1 .gallery-item-full {
    max-width: 100%;
  }
}
