/* Events section — enforce exact same card size for all event cards.
   Behavior:
   - All visible and expanded event cards use identical fixed heights so they look uniform.
   - Grid columns remain responsive but cards keep the same dimensions.
   - Card bodies become scrollable if content exceeds the available space (prevents growth).
*/

/* Grid containers: visible + expanded hidden area use the same column sizing */
.event-grid,
.more-events.expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: stretch; /* ensures items fill the grid cell */
  box-sizing: border-box;
}

/* Exact card sizing */
.event-card {
  box-sizing: border-box;
  width: 100%;
  height: 380px;                 /* exact same height for every card */
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 8px 32px rgba(2,6,23,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;              /* hide overflow, make inner area scrollable instead */
  min-width: 0;                  /* prevents grid overflow issues on very narrow screens */
}

/* Hover/focus */
.event-card:hover,
.event-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(2,6,23,0.6);
}

/* Thumbnail */
.event-thumb {
  width: 100%;
  height: 160px;                 /* fixed image display height */
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 160px;               /* reserved space in the card layout */
  display: block;
}

/* Head row (title + time) */
.event-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  flex: 0 0 auto;
}
.event-card h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.22;
  color: #fff;
}
.event-head time {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  white-space: normal;
}

/* Main description/body */
.event-card p {
  margin: 0;
  color: var(--muted-2, rgba(255,255,255,0.72));
  font-size: 0.95rem;
  line-height: 1.45;
  hyphens: auto;
  overflow: auto;                /* enable scrolling inside the card if needed */
  flex: 1 1 auto;                /* take remaining space but not exceed card height */
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;            /* small padding so scrollbar doesn't overlap text */
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px) scale(.98); transition: opacity 600ms var(--transition), transform 600ms var(--transition); }
.reveal.visible { opacity: 1; transform: none; }

/* Expanded hidden area */
.more-events {
  display: grid;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 420ms ease, padding 320ms ease;
  box-sizing: border-box;
}
.more-events.expanded {
  grid-template-columns: repeat(4, minmax(220px, 1fr)); /* show 4 columns on wide screens */
  padding-top: 18px;
  padding-bottom: 12px;
  max-height: 4000px;           /* large enough to reveal the grid */
  overflow: visible;
  justify-items: stretch;
}

/* Responsive adjustments for events grids */
@media (max-width: 1200px) {
  .event-grid,
  .more-events.expanded { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (max-width: 900px) {
  .event-grid,
  .more-events.expanded { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
@media (max-width: 480px) {
  .event-grid,
  .more-events.expanded { grid-template-columns: 1fr; }
}

/* View-more control */
.view-more-wrap { text-align: center; margin-top: 18px; }
.view-more-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, transform 160ms ease;
}
.view-more-btn:hover,
.view-more-btn:focus { background: rgba(255,255,255,0.02); transform: translateY(-2px); outline: none; }
.view-more-btn[aria-expanded="true"] { background: linear-gradient(90deg,var(--accent1),var(--accent2)); color: #fff; border-color: transparent; }

/* Reduced-motion respects user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .event-card,
  .view-more-btn,
  .more-events { transition: none !important; transform: none !important; animation: none !important; }
}

/* -------------------- General site styles -------------------- */

section.supported-games {
  background: url(https://i.postimg.cc/2SJtJBZw/m-P5JVt-Cd.png) #0b0f12 no-repeat center 0;
  overflow: visible;
}
section.supported-games .section-content-container { padding: 40px 0; }

/* Section separator box */
:root {
  --sep-height: 64px;
  --sep-max-width: calc(var(--max-width,1100px) - 40px);
  --sep-bg-start: rgba(18,4,6,0.85);
  --sep-bg-end: rgba(18,4,6,0.95);
  --sep-glow: rgba(185,28,28,0.08);
  --sep-radius: 14px;
}

.section-sep {
  background: linear-gradient(180deg, var(--sep-bg-start), var(--sep-bg-end));
  max-width: var(--sep-max-width);
  width: calc(100% - 48px);
  margin: 24px auto;
  border-radius: var(--sep-radius);
  box-shadow: 0 10px 30px var(--sep-glow), inset 0 1px 0 rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.02);
  position: relative;
  z-index: 2;
  text-align: center; /* fixed colon typo */
}

/* Optional overlap variant */
.section-sep.overlap {
  margin-top: -18px;
  margin-bottom: 18px;
}

/* Mobile adjustments for separator */
@media (max-width: 700px) {
  :root { --sep-height: 48px; }
  .section-sep { width: calc(100% - 28px); margin: 16px auto; border-radius: 10px; }
}

/* Theme variables */
:root{
  --bg:#120406;
  --card:#2a0b0b;
  --accent1:#ef4444;
  --accent2:#dc2626;
  --muted:rgba(255,255,255,0.72);
  --glass:rgba(255,255,255,0.03);
  --radius:12px;
  --max-width:1100px;
  --transition:300ms cubic-bezier(.2,.9,.3,1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --hero-overlay-color: rgba(0,0,0,0.48);
  --glow: drop-shadow(0 8px 20px rgba(99,102,241,0.12));
}

* { box-sizing:border-box; }
html,body { height:100%; font-family: var(--font); color: white; }
body { background-color: #6a1111; margin: 0; }

.section { background: transparent; position: relative; z-index: 1; }
#typed { color: #ffffff; }

/* Layout */
.page{
  min-height:100vh;
  display:flex;              /* fixed invalid display:fit */
  flex-direction:column;
}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px clamp(16px,4vw,36px);
  backdrop-filter: blur(6px);
  background:linear-gradient(180deg, rgba(10,14,22,0.5), rgba(10,14,22,0.15));
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.brand{ display:flex; align-items:center; gap:14px; }
.logo{
  color:white;
  text-decoration:none;
  font-weight:600;
  font-size:1.1rem;
  display:flex;
  align-items:center;
  gap:8px;
}

.hamburger{
  width:36px; height:36px;
  border-radius:8px; border:0;
  background:var(--glass);
  display:inline-grid; place-items:center;
  padding:6px; cursor:pointer;
}
.hamburger span{
  display:block;
  height:2px; width:16px;
  background:#e8f0ff;
  border-radius:2px;
  transition:transform var(--transition),opacity var(--transition);
}
.hamburger span:nth-child(2){ width:12px; }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.nav{ display:flex; gap:18px; }
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px;
  border-radius:8px;
  transition:color var(--transition);
  font-weight:500;
}
.nav a:hover{ color:white; }

/* Mobile nav toggle (expects hamburger immediately before .nav in the DOM) */
@media (max-width: 800px) {
  .nav {
    display: none;
    flex-direction: column;
    background: rgba(10,14,22,0.95);
    position: absolute;
    top: 60px; /* below header */
    right: 0;
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
  }
  .hamburger[aria-expanded="true"] + .nav {
    display: flex;
  }
}

/* Hero (merged, de-duped) */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 66vh;
  background:url(https://i.postimg.cc/2SJtJBZw/m-P5JVt-Cd.png);
  background-size: cover;
  background-position: center center; /* unified center position */
  background-repeat: no-repeat;
  padding:48px 20px;
  text-align:center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
  transition: background 300ms ease;
}
.hero-inner,.hero-content { position: relative; z-index: 2; }
.hero:hover::before { background: rgba(0,0,0,0.62); }

/* Background video */
.hero-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.55;
  z-index:0;
  pointer-events:none;
  will-change:transform,opacity;
}

/* Particle canvas sits above the video as an overlay */
.particle-canvas{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0.9;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:var(--max-width);
  margin:0 auto;
  padding:30px 20px;
}
.hero-title{
  font-size:clamp(1.8rem,4vw,3.2rem);
  margin:0 0 12px;
  letter-spacing:-0.02em;
}
.cursor{
  color:var(--accent2);
  margin-left:6px;
  opacity:1;
  animation:blink 900ms steps(1) infinite;
}
@keyframes blink{ 50%{ opacity:0; } }

.hero-sub{ color:var(--muted); margin:0 0 20px; }
.hero-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

.btn{
  display:inline-block;
  padding:14px 20px; /* touch-friendly */
  border-radius:10px;
  border:0;
  cursor:pointer;
  text-decoration:none;
  font-weight:600;
}
.btn.primary{
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  color:white;
  box-shadow:0 6px 24px rgba(99,102,241,0.12);
  transform:translateZ(0);
}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--muted);
}

/* Animated wave */
.hero-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:130px;
  color:#2b0404;
  z-index:2;
  transform:translateY(24px);
}

/* Sections */
.section{ padding:72px 20px; }
.section-title{
  font-size:clamp(1.2rem,3vw,1.6rem); /* responsive font */
  margin:0 0 18px;
  text-align:center;
  color:white;
}

/* Cards grid */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  max-width:var(--max-width);
  margin:0 auto;
}

/* Cards 1-4 (fixed invalid props; made responsive) */
.card{
  background-image:url(https://i.postimg.cc/2SJtJBZw/m-P5JVt-Cd.png);
  background-size: cover;
  background-position:center center;
  background-repeat:no-repeat;
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 8px 32px rgba(2,6,23,0.5);
  border:1px solid rgba(255,255,255,0.03);
  transition:transform var(--transition),box-shadow var(--transition);
}
.card2{
  background-image:url(https://pbs.twimg.com/media/FPrS7ZeVsAI6Nxu.jpg:large);
  background-size: cover;
  background-position:center center;
  background-repeat:no-repeat;
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 8px 32px rgba(2,6,23,0.5);
  border:1px solid rgba(255,255,255,0.03);
  transition:transform var(--transition),box-shadow var(--transition);
}
.card3{
  background-image:url(https://www.uploadvr.com/content/images/size/w1200/2020/10/POP1ScreenshotSquad.png);
  background-size: cover;
  background-position:center center;
  background-repeat:no-repeat;
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 8px 32px rgba(2,6,23,0.5);
  border:1px solid rgba(255,255,255,0.03);
  transition:transform var(--transition),box-shadow var(--transition);
}
.card4{
  background-image:url(https://roadtovrlive-5ea0.kxcdn.com/wp-content/uploads/2020/10/population-one-5.jpg);
  background-size: cover;
  background-position:center center;
  background-repeat:no-repeat;
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 8px 32px rgba(2,6,23,0.5);
  border:1px solid rgba(255,255,255,0.03);
  transition:transform var(--transition),box-shadow var(--transition);
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 48px rgba(2,6,23,0.65);
}
.card, .card2, .card3, .card4, h3{ margin:0 0 8px; }
.card, .card2, .card3, .card4, p{
  margin:0;
  color:var(--muted);
}

/* Highlight */
.highlight {
  background-color: rgba(255, 0, 0, 0.25);
  display: inline-block;
  border-style:solid;
  border-color:black;
}

/* About */
.about-grid{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:22px;
  align-items:center;
}
.image-card{
  background-image:url(https://media.discordapp.net/attachments/1406479249925472338/1427099602259152917/IMG_4557.jpg?ex=6900bf53&is=68ff6dd3&hm=ad1a0e8c666498efe0038b05acdeb05487e6a0b9a3b6820040cb6fa58b5fd4bf&=&format=webp&width=800&height=800);
  background-size:350px;
  background-position:center center;
  background-repeat:no-repeat;
  border-radius:var(--radius);
  box-shadow:0 8px 32px rgba(2,6,23,0.5);
  border:1px solid rgba(255,255,255,0.03);
  transition:transform var(--transition),box-shadow var(--transition);
  padding:275px 5px 100px 250px;
}

/* Reveal animations (global) */
.reveal{
  opacity:0;
  transform:translateY(18px) scale(0.1);
  transition:opacity 600ms var(--transition),transform 600ms var(--transition);
}
.reveal.visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (max-width:800px){
  .hero{ min-height:56vh; }
  .about-grid{ grid-template-columns:1fr; }
  .image-card{
    padding:120px 20px;           /* reduced padding for mobile */
    background-size: cover;       /* scale image to container */
  }
}

/* Logo */
.srg-logo {
  filter: drop-shadow(0 0 5px #000);
  -webkit-filter: drop-shadow(0 0 5px #000);
  width: clamp(160px, 30vw, 250px); /* responsive width */
}

/* Application section */
.application-section { padding: 72px 20px; background: transparent; color: inherit; }
.application-section .section-title { margin-bottom: 8px; }
.app-form { max-width: 820px; margin: 18px auto 0; display:flex; flex-direction:column; gap:10px; }
.app-form label { font-weight:600; color:var(--muted); margin-bottom:6px; }
.app-form input[type="text"],
.app-form textarea {
  width:100%;
  padding:12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: inherit;
  font-size: 0.98rem;
  resize: vertical;
}
.app-form .btn { margin-top:6px; }
.form-embed-wrapper iframe { border: none; border-radius: 10px; box-shadow: 0 12px 34px rgba(0,0,0,0.45); }

/* Footer */
.site-footer{
  text-align:center;
  padding:20px;
  color:var(--muted);
  font-size:0.9rem;
}
        /* Collapsed state: fully hidden and non-interactive */
        .more-events[aria-hidden="true"] {
            max-height: 0 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            overflow: hidden !important;
            transition: max-height 420ms ease, opacity 260ms ease;
        }
    
        /* Expanded state: visible, same transitions */
        .more-events[aria-hidden="false"] {
            max-height: 4000px !important;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
            overflow: visible !important;
            transition: max-height 420ms ease, opacity 260ms ease;
        }
    
        /* Force exact same size for every card (visible and view-more items) */
        .event-card {
            box-sizing: border-box;
            width: 100%;
            height: 380px;                 /* same fixed height for all cards */
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px;
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.03);
            box-shadow: 0 8px 32px rgba(2,6,23,0.45);
            transition: transform 300ms cubic-bezier(.2,.9,.3,1), box-shadow 300ms cubic-bezier(.2,.9,.3,1);
            overflow: hidden;              /* keep card a fixed size; inner content scrolls */
            min-width: 0;
        }
    
        .event-thumb {
            width: 100%;
            height: 160px;                 /* fixed image area inside the fixed card */
            object-fit: cover;
            border-radius: 8px;
            flex: 0 0 160px;
            display: block;
        }
    
        /* Body area becomes scrollable if content exceeds the fixed card height */
        .event-body {
            flex: 1 1 auto;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            padding-right: 6px; /* prevent scrollbar from overlapping text */
        }
    
        /* keep small interaction polish */
        .event-card:hover, .event-card:focus-within {
            transform: translateY(-6px);
            box-shadow: 0 18px 48px rgba(2,6,23,0.6);
        }
    
        /* ensure reveal animations still run but don't change card size */
        .reveal {
            opacity: 0;
            transform: translateY(18px) scale(.98);
            transition: opacity 600ms var(--transition), transform 600ms var(--transition);
        }
        .reveal.visible {
            opacity: 1;
            transform: none;
        }
    
        /* Keep grid responsive but cards remain fixed-size visually */
        .event-grid, .more-events.expanded {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            max-width: var(--max-width);
            margin: 0 auto;
            align-items: stretch;
            box-sizing: border-box;
        }
    
        /* safe responsive adjustments */
        @media (max-width: 900px) {
            .event-card {
              height: 360px;
            }
            .event-thumb {
                height: 150px;
                flex: 0 0 150px;
            }
        }
        @media (max-width: 480px) {
            .event-card {
              height: 320px;
            }
            .event-thumb {
                height: 130px;
                flex: 0 0 130px; 
            }
        }
    /* Scoped styles for the About section only (keeps other styles untouched) */
        :root {
            --about-bg: linear-gradient(180deg, rgba(18,4,6,0.28), rgba(6,6,6,0.06));
            --card-bg: rgba(255,255,255,0.02);
            --accent-1: #ef4444;
            --accent-2: #dc2626;
            --muted-text: rgba(255,255,255,0.88);
            --muted-sub: rgba(255,255,255,0.70);
            --radius: 14px;
            --max-w: 1100px;
            --glass: rgba(255,255,255,0.03);
        }
    
        .decorated-about {
            background: var(--about-bg);
            padding: 54px 20px 64px;
            color: var(--muted-text);
        }
    
        .decorated-about .container {
            max-width: var(--max-w);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 28px;
            align-items: start;
        }
        /* Left column: content card with decorative header */
        .about-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 26px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.35);
            border: 1px solid rgba(255,255,255,0.03);
            position: relative;
            overflow: hidden;
        }
        .about-header {
            display:flex;
            align-items:center;
            gap:14px;
            margin-bottom: 12px;
        }
        .about-badge {
            width:58px;height:58px;border-radius:10px;
            background: linear-gradient(135deg,var(--accent-1),var(--accent-2));
            display:grid; place-items:center;
            box-shadow: 0 6px 18px rgba(220,36,36,0.18);
            flex: 0 0 58px;
        }
        .about-badge img {
            width:34px;
            height:34px;
            color:#fff;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
        }
    
        .about-title-main {
            margin:0;
            font-size:1.25rem;
            color:white;
            letter-spacing:-0.01em;
        }
        .about-sub {
            margin:4px 0 0;
            color:var(--muted-sub);
            font-size:0.92rem;
        }
    
        .about-body p {
            margin:14px 0;
            color:var(--muted-text);
            line-height:1.55;
        }
    
        /* Mission block */
        .mission {
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:12px;
            margin-top:12px;
        }
        .mission .pill {
            background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
            border-radius: 10px;
            padding:12px;
            border:1px solid rgba(255,255,255,0.03);
        }
        .pill strong {
            display:block;
            color:#fff;
            margin-bottom:6px;
        }
        .pill p {
            margin:0;
            color:var(--muted-sub);
            font-size:0.95rem;
        }
    
        /* Right column: image + stats */
        .about-side {
            display:flex;
            flex-direction:column;
            gap:16px;
            align-items:stretch;
        }
    
        .about-visual {
            background: url('https://i.imgur.com/5KRjne1.jpeg') center/cover no-repeat;
            border-radius: var(--radius);
            height: 320px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.36);
            border: 1px solid rgba(255,255,255,0.03);
            position: relative;
            overflow:hidden;
        }
        .about-visual::after{
            content:"";
            position:absolute; inset:0;
            background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.35));
        }
    
        .stats {
            display:flex;
            gap:12px;
            background: var(--card-bg);
            padding:12px;
            border-radius: 12px;
            border:1px solid rgba(255,255,255,0.03);
            justify-content:space-between;
            align-items:center;
        }
    
        .stat {
            text-align:center;
            flex:1 1 0;
        }
        .stat .n {
            font-weight:700;
            color:white;
            font-size:1.15rem;
            display:block;
        }
        .stat .l {
            color:var(--muted-sub);
            font-size:0.86rem;
            margin-top:6px;
        }
    
        /* CTA */
        .about-cta {
            display:flex;
            gap:10px;
            margin-top:12px;
            align-items:center;
        }
        .btn-join {
            background: linear-gradient(90deg,var(--accent-1),var(--accent-2));
            color:white;
            padding:9px 12px;
            border-radius:10px;
            border:0;
            font-weight:700;
            text-decoration:none;
            box-shadow: 0 8px 24px rgba(220,36,36,0.14);
        }
        .btn-learn {
            background: transparent;
            color:var(--muted-text);
            padding:8px 10px;
            border-radius:10px;
            border:1px solid rgba(255,255,255,0.04);
            text-decoration:none;
            font-weight:600;
        }
    
        /* Small decorative separator wave at bottom of section */
        .about-wave {
            display:block;
            width:100%;
            height:38px;
            margin-top:18px;
        }
    
        /* Responsive */
        @media (max-width: 980px) {
            .decorated-about .container {
                grid-template-columns: 1fr;
            }
            .about-visual {
                height:240px;
            }
            .about-side { 
                order: 2; 
            }
            .about-card {
                order: 1;
            }
        }
