/* ===== Norsan Media — static HTML/CSS version ===== */
:root {
  --black: #1C1C1E;
  --blue: #00B2EE;
  --cyan: #00CCFF;
  --deep-blue: #0099CC;
  --sky-1: #6DB8EE;
  --sky-2: #66B6ED;
  --sky-3: #5496DD;
  --maroon: #88032C;
  --navy: #2C2E38;
  --input: #A4DEF8;
  --sidebar-w: 240px;
}
@font-face {
    font-family: 'Avenir Book';
    src: url('../fonts/Avenir-Book.woff2') format('woff2'),
        url('../fonts/Avenir-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Book';
    src: url('../fonts/Avenir-BookOblique.woff2') format('woff2'),
        url('../fonts/Avenir-BookOblique.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Black.woff2') format('woff2'),
        url('../fonts/Avenir-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Black Oblique';
    src: url('../fonts/Avenir-BlackOblique.woff2') format('woff2'),
        url('../fonts/Avenir-BlackOblique.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Heavy.woff2') format('woff2'),
        url('../fonts/Avenir-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-HeavyOblique.woff2') format('woff2'),
        url('../fonts/Avenir-HeavyOblique.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Light.woff2') format('woff2'),
        url('../fonts/Avenir-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-LightOblique.woff2') format('woff2'),
        url('../fonts/Avenir-LightOblique.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Medium.woff2') format('woff2'),
        url('../fonts/Avenir-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-MediumOblique.woff2') format('woff2'),
        url('../fonts/Avenir-MediumOblique.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Oblique.woff2') format('woff2'),
        url('../fonts/Avenir-Oblique.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Roman.woff2') format('woff2'),
        url('../fonts/Avenir-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



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

html { scroll-behavior: smooth; }

body {
  font-family: 'Avenir', sans-serif;
  background: var(--black);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Avenir', sans-serif; }

img { max-width: 100%; display: block; }

::selection { background: rgba(0, 178, 238, 0.4); }

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background: var(--black);
  padding: 32px 15px;
  display: flex;
  flex-direction: column;
  z-index: 60;
}
.logo img { margin-top: 15px; }
.nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: auto 0 auto;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.65em;
  transition: color .2s, transform .2s;
}
.nav a:hover { color: var(--blue); transform: translateX(4px); }
.nav a.active { color: var(--blue); font-weight: 700; }
.cert { margin-top: auto; display: flex; align-items: center; gap: 12px; margin-top: 0;}
.cert p {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: .03em;
}
.cert .divider { width: 1px; height: 64px; background: rgba(255,255,255,.4); }
.cert img { height: 64px; width: auto; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  z-index: 55;
}

/* ===== Mobile header ===== */
.mobile-header {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--black);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}
.menu-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

/* ===== Layout ===== */
main { margin-left: var(--sidebar-w); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }
.left { text-align: left; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(140deg, var(--sky-1) 0%, var(--sky-2) 50%, var(--sky-3) 100%);
  overflow: hidden;

}
.hero-band {
  position: absolute; inset: 0;
  background: var(--black);
  clip-path: polygon(0 42%, 14% 75.3%, 86% 75.3%, 100% 42%, 100% 100%, 0 100%);
}
.hero-top {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end;
  padding: 28px 48px 0;
}
.btn-contact {
  background: rgba(46, 127, 196);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 50px;
  border-radius: 999px;
  box-shadow: 5px 3px 6px 2px #000000;
  backdrop-filter: blur(4px);
  transition: transform .25s, box-shadow .25s;
  font-weight: 900;
  font-size: 1.15em;
  letter-spacing: 0px;
}
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.hero-title { position: relative; z-index: 2; text-align: center; margin-top: 24px; padding: 0 24px;margin: auto 0 auto; }
.hero-title h1 { font-size: clamp(2.5rem, 5.5em, 5.5em); font-weight: 900; letter-spacing: -.02em; }
.hero-title h2 {font-weight: 900;}
.tagline-bold { margin-top: 45px; font-size: clamp(1.1rem, 1.9em, 1.9em); font-weight: 700; text-shadow: 0px 3px 8px #000000;}
.tagline-italic {  font-size: clamp(1rem, 1.7em, 1.7em); font-style: italic; text-shadow: 0px 3px 8px #000000;line-height: 1; margin-bottom: 45px;}
.hero-cards-wrap {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; 
  align-items: flex-end;
  max-width: 1700px; margin: 0 auto; width: 100%;
  padding: 40px 56px 7vh;
}
.hero-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: 100%; }
.hero-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 0;
  padding-top: 133.33%; /* 3/4 aspect ratio */
  border: 3px solid var(--blue);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: 0 28px 48px rgba(0,0,0,.45); }
.hero-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.hero-card:hover img { transform: scale(1.05); }
.card-label {
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0 3px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(98, 174, 233, .5);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    font-size: 1.4em;
    padding: 6px 10px 3px;
}
.card-label .ring { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; }

/* ===== Sections generic ===== */
.section-white { background: #fff; color: var(--black); padding: 90px 0; }
.section-dark { background: var(--black); padding: 90px 0; }
.h-blue { color: #0090CC; font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 900; letter-spacing: -.02em; }
.h-blue.mt { margin-top: 48px; }
.h-white { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.02em; text-align: center; }
.h-white.left { text-align: left; }
.body-text { margin-top: 24px; font-size: 16px; line-height: 1.4; color: var(--black); }
.body-light { margin-top: 24px; font-size: 1.3em; line-height: 1.4; color: rgba(255,255,255,1); }
.btn-blue {
  display: inline-block;
  margin-top: 32px;
  background: rgba(46, 127, 196);
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  padding: 8px 47px;
  border-radius: 999px;
  box-shadow: 5px 3px 6px 2px #000000;
  transition: transform .25s, box-shadow .25s;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.3); }

/* ===== About / Markets ===== */
.about-grid { display: flex; align-items: center; }
.market-title{
  font-size: 1.8em;
}
.about-title{
  font-size: 2.4em;
}
.markets{
  display: flex;
  justify-content: space-between;
}
.market-secction{
  width: 120%;
}

.markets-list {
  margin-top: 24px;
  list-style: disc;
  padding-left: 20px;
  font-size: 20px;
  line-height: 1.2;
}
.map-wrap { display: flex; justify-content: center; width:80%;}
.map-img { width: 100%; max-width: 450px; border-radius: 50%; box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.owl-carousel-logos{
  background: #f1f1f1;
  padding: 35px 70px;
  border-radius: 50px;
  position: relative;
}
.owl-carousel-logos img{
  max-width: 130px !important;
  margin:0 auto;
}

.owl-nav{
  position: absolute;
  z-index: 2;
  top:50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.owl-carousel-logos .owl-nav button.owl-prev,
.owl-carousel-logos .owl-nav button.owl-next,
.owl-carousel-logos button.owl-dot{
  font-size: 5em !important;
  color: rgba(46, 127, 196) !important;
}
.glider-slide{
  display: flex;
  margin:0 auto;
}
.brands { margin-top: 80px; text-align: center; padding: 0 80px;}
.brands-title { font-size: clamp(1.25rem, 2.4vw, 1.5rem); font-weight: 900; text-transform: uppercase; letter-spacing: .03em; margin-bottom:35px;}
.brands-bar { margin: 32px auto 0; width: 100%; max-width: 900px; }

/* ===== Beyond Reach ===== */
.beyond { padding-top: 10px; }
.beyond-head { max-width: 760px; margin: 0 auto; text-align: center; }
.beyond-head .h-blue { line-height: 1.25; font-weight: 900;font-family: 'Avenir Black Oblique';}
.beyond-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.beyond-col h3 { text-align: center; color: #0090CC; font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.beyond-card {
  background: linear-gradient(180deg, #0D63A8 0%, #00A3E0 100%);
  border-radius: 24px;
  padding: 20px 24px;
  color: #fff;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-wrap: wrap;
}
.beyond-card .text-alone{
  font-size: 1em;
  text-align: center;
}
.beyond-card .top{
  display: flex;
  align-items: center;
}
.beyond-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0,0,0,.3); }
.beyond-card p { font-size: 14px; line-height: 1.1; }
.beyond-card .stat {    line-height: 1; letter-spacing: -2px; font-size: 3.6em;font-weight: 900; vertical-align: middle; margin-right: 8px; }
.beyond-card .stat small{
    font-weight: 900;
    margin-left: 4px;
  }
.beyond-card .source {font-size: 12px; font-style: italic; color: rgba(255,255,255,.8); min-height: 0; }
.beyond-card .source.small { font-size: 10px;margin-bottom: -20px;}
.beyond-card img {align-self: flex-end; height: 170px; width: 100%; object-fit: cover; border-radius: 16px; }

/* ===== Radio ===== */
.choose-label { 
  margin-top: 56px;
  font-size: 2em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.select-wrap { margin-top: 16px; display: flex; justify-content: center; }
.market-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%; max-width: 475px;
  height: 48px;
  border: none; border-radius: 999px;
  background: linear-gradient(90deg, #00B6F0, #0090CC);
  color: #fff;
  font-size: 16px; font-weight: 500;
  padding: 0 48px 0 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"), linear-gradient(90deg, #00B6F0, #0090CC);
  background-repeat: no-repeat, no-repeat;
  background-position: right 20px center, 0 0;
  text-align: center;
  font-size: 1.5em;
  font-weight: 300;
}
.market-select option { color: var(--black); background: #fff; }
.radio-subttl{
  margin-top: 24px;
  font-size: 1.9em;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.4px;
}

/* ===== Print ===== */
.print { overflow: hidden; }
.print-grid{
  display:flex;
}
.print-grid > div{
  width: 60%;
}
.print-circle{
  width: 40%!important;
  align-self: center;
}
.print .h-white.left { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
.content-sub {
  display: inline-block; margin-top: 40px;
  font-size: 20px; color: #fff;
  border-bottom: 4px solid var(--blue);
  padding-bottom: 4px;
}
.print-circle{
  position: relative;
}
.print-circle:after{
  content:'';
  position: absolute;
  width: 170%;
  height: 130%;
  background-color: blue;
  border-radius: 100%;
  top: -20%;
  z-index: 1;
  right: -75%;
}
.print-circle img {
  width: 100%;
  align-self: center;
  transform: rotate(8deg);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .45));
  max-width: inherit;
  position: relative;
  z-index: 2;
}
.print .container.center { margin-top: 64px; }
.print .choose-label { margin-top: 0; }

/* ===== Events ===== */
.events {
  background: var(--blue);
  padding: 90px 0 100px;
  position: relative;
}
.event-band{
  position: absolute;
  inset: 0;
  background: var(--black);
  clip-path: polygon(0 67%, 14% 75.3%, 86% 75.3%, 100% 67%, 100% 100%, 0 100%);
  transform: rotate(180deg);
  z-index: 0;
  top: -1px;
  height: 180%;
}
.event-title{
  position: relative;
  z-index: 2;
}
.events-grid { margin-top: 110px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.event-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 80px 13px 40px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0,0,0,.3);
  transition: transform .3s, box-shadow .3s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 24px 44px rgba(0,0,0,.4); }
.event-card img {
  position: absolute; top: -64px; left: 50%; transform: translateX(-50%);
  width: 128px;
}
.event-card h3{
  color:#000;
  font-weight:900;
  font-size: 1.2em;
  margin-bottom: 15px;
}
.event-card p { 
  color: var(--black);
  font-size: .9em;
  line-height: 1.2;
  
}
.event-card p:not(:last-child){
  margin-bottom: 25px;
}
.inside-events {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.inside-events a{
  margin-top: auto;
}

/* ===== Television ===== */
.television { background:var(--blue); padding-bottom: 20px;}
.tv-card {
  position: relative;
  border-radius: 24px;
  padding: 50px 40px 81px 80px;
  margin-top: 64px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
  transition: transform .3s, box-shadow .3s;
  margin-left: 80px;
  margin-bottom: 45px;
}
.tv-card:hover { transform: translateY(-5px); box-shadow: 0 24px 44px rgba(0,0,0,.4); }
.tv-card.maroon { background: var(--maroon); }
.tv-card.navy,.tv-card:last-child .tv-meta { background: var(--navy); }
.tv-logo { position: absolute; left: -85px; top: 50%; transform: translateY(-50%); width: 144px;     z-index: 2;}
.tv-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px;}
.tv-dials { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.pill {
  padding: 9px 16px;
  font-size: 13px;
  text-align: center;
}
.pill.dark { background: #202020 }
.pill.blue { background: #236480 }
.tv-copy p { font-size: 13px; line-height: 1.65; }
.tv-copy p + p { margin-top: 12px; }
.tv-meta { 
  width: 100%;
  background: #202020;
  position: absolute;
  flex-wrap: wrap;
  gap: 12px 48px;
  font-size: 17px;
  left: 0;
  bottom: 0;
  padding: 8px 50px;
  border-radius: 0 0 24px 24px;
  display: flex;
}

/* ===== Digital Media ===== */
.digital {
  position: relative;
  background: var(--black);
  padding: 30px 0 0;
  overflow: hidden;
}
.hero-band-digital{
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius:0px 0 120% 120% / 121%;
}
.digital .container{
  position: relative;
  z-index: 2;
}

.digital-numbers h3{
  font-weight: 900;
  font-size: 1.7em;
  text-align: center;
  line-height: 1.3;
}
.devices {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  max-width: 850px; margin: 40px auto 0;
}
.devices .laptop { width: 74%; }
.devices .phone { width: 20%; margin-left: -70px; padding-bottom: 16px; }
.digital-curve {
  position: absolute;
  left: 50%; bottom: -38%;
  width: 140%; height: 70%;
  transform: translateX(-50%);
  background: var(--black);
  border-radius: 100%;
}

/* ===== Contact ===== */
.contact { min-height: 80vh; display: flex; align-items: center; }
.contact .container { max-width: 760px; }
.phone-number a { margin-top: 12px; font-size: 18px; color: rgba(255,255,255,.9); }
.contact-form {
  margin-top: 40px;
  background: var(--blue);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.field label {
  display: block; text-align: left;
  font-size: 12px; font-weight: 500; color: var(--black);
  margin-bottom: 8px;
}
.dropdown-field{
  margin: 15px 0;
}
.field input, .contact-form textarea,.field select{
  width: 100%;
  background: var(--input);
  border: none; outline: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px; color: var(--black);
  font-family: 'Inter', sans-serif;
  transition: box-shadow .2s;
}
.contact-form textarea { border-radius: 16px; margin-top: 20px; resize: none; }
.field input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 4px rgba(255,255,255,.3); }
.submit-btn {
  margin-top: 24px;
  background: var(--black); color: #fff;
  border: none; cursor: pointer;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 12px 40px; border-radius: 999px;
  transition: transform .25s, box-shadow .25s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.45); }
.form-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.7); font-style: italic; }

/* ===== Radio station blocks ===== */
.market-blocks-wrap { margin-top: 140px; }
.market-blocks.radio-design { display: flex; gap: 56px; flex-wrap: wrap;justify-content: center;}
.market-blocks.radio-design .station-card {
  position: relative;
  background: var(--card-bg, #0099CC);
  color: var(--card-text, #fff);
  border-radius: 24px;
  padding: 94px 34px 76px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  box-shadow: 0 20px 44px rgba(0,0,0,.4);
  width: calc(100% / 3 - 50px);
  margin-bottom: 45px;
}
.market-blocks.radio-design .station-logo {
  position: absolute;
  left: 50%;
  top: -15%;
  transform: translateX(-50%);
  width: 150px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.station-logo-ph {
  position: absolute; left: -55px; top: 50%;
  transform: translateY(-50%);
  width: 150px; height: 132px;
  background: linear-gradient(160deg, #2a2a2e, #101012);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 22px; color: #fff; letter-spacing: .08em;
}
.station-lines { font-size: 1.1em; line-height: 1.55; }
#radio .station-lines { min-height: 170px;}
.station-info h3 { margin-top: 26px; font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; letter-spacing: -.01em; }
.station-host { margin-top: 4px; font-size: clamp(15px, 1.8vw, 20px); }
.station-air { margin-top: 10px; font-size: 16px; }
.station-map img { border-radius: 16px; width: 100%; }
.radio-carousel{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.radio-program{
  background: #1c1c1e;
  margin-bottom: 10px;
  color:#fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 11px;
  padding: 10px 10px;
  min-height: 90px;
}
.radio-program.inverted{
  color:#1c1c1e;
  background: #fff;
}
.radio-program h5{
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 900;
}
.radio-program p{
  font-size: .8em;
  font-weight: 300;
}
.station-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.station-dots span { width: 10px; height: 10px; border-radius: 50%; background: currentColor; opacity: .22; }
.station-dots span.on { opacity: .85; }
.station-social { position: absolute; bottom: 20px; right: 32px; display: flex; gap: 12px; }
.station-social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: #111; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.station-social a:hover { transform: scale(1.12); }
/* ===== About page (about.html) ===== */
.about-page { background: #fff; color: #1B1B1C; overflow: hidden;}
.about-hero-wrap {
    line-height: 0;
    position: relative;
    margin-top: -15%;
  }
.about-hero {
  width: 100%;
  display: block;
}
.about-story { padding: 48px 0 70px; }
.story-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.story-hex { width: 240px; margin-top: -70px; position: relative; z-index: 2; }
.story-title {
  color: #2F7FC4;
  font-size: 3.6em;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.story-text:not(:last-child){
  font-size: 1.1em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.story-cols {
  margin-top: 44px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-size: 1.1em;
  line-height: 1.4;
}
.about-values {
  background: #1B1B1C;
  color: #fff;
  padding: 40px 0 90px;
  margin-top: -10px;
  position: relative;
}
.about-values:before{
  content:'';
  background: url("../assets/norsan/back-about.png")top center;
  width: 100%;
  height: 80%;
  position: absolute;
  top: 0px;
  z-index: 2;
  background-size: cover;
}
.about-info{
  position: relative;
  z-index: 3;
}
.values-hexes {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: -35px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.values-hexes img {

}
.values-head {
  margin-top: 36px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.35;
}
.values-lines {
  margin-top: 28px;
  font-size: 1.8em;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
.values-sub { margin-top: 28px; font-size: 1.1em; line-height: 1.7; color: rgba(255,255,255,.92); }
.values-cols {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.25;
  color: rgba(255,255,255,.92);
}
/*Print*/
.market-blocks.print-design { display: grid; gap: 56px; flex-direction: column;}
.market-blocks.print-design .station-card {
  width: 100%;
  position: relative;
  background: linear-gradient(90deg,rgba(0, 96, 196, 1) 1%, rgba(0, 119, 219, 1) 26%, rgba(0, 155, 255, 1) 100%);
  color: var(--card-text, #fff);
  border-radius: 24px;
  padding: 44px 44px 76px 180px;
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 44px;
  align-items: center;
  box-shadow: 0 20px 44px rgba(0,0,0,.4);
}
.market-blocks.print-design .station-logo {
  position: absolute; left: -25px; top: 50%;
  transform: translateY(-50%);
  width: 150px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.market-blocks.print-design .language{
  display: flex;
}
.market-blocks.print-design .station-info{
  line-height: 1.6;
  font-size: 1.1em;
  font-weight: 600;
}
.print-design .station-map h3{
  text-align: center;
  font-size: 2em;
  text-transform: uppercase;
}
.print-design .station-map img{
  width: 70%;
  margin:0 auto;
}
.print-design .station-social a{
  background: rgb(78 162 250);
}
.print-design .station-link{
  background: linear-gradient(90deg,rgba(0, 96, 196, 1) 1%, rgba(0, 119, 219, 1) 26%, rgba(0, 155, 255, 1) 100%);
  text-transform: uppercase;
  color:#fff;
  font-weight: 900;
  font-size: 1.6em;
  text-decoration: none;
  padding: 12px 100px;
  border-radius: 50px;
  margin:0 auto;
}
@media (max-width: 899px) {
  .hero{margin-top: 65px;}
  .hero-title{padding: 50px 24px 0;}
  .hero-title h1{font-size: 2.4em;}
  .tagline-bold{margin-top: 15px;font-size: 1.4em;}
  .tagline-italic{
    font-size: 1.2em;
    margin-top: 15px;
  }
  .logo img{max-width: 200px;
        padding: 20px 0;}
  .hero-card:last-child{
    padding-top: 63%;
  }
  .about-grid,.markets{
    flex-direction: column;
  }
  .market-secction{
    width: 100%;
    margin-bottom:55px;
  }
  .owl-carousel{
    padding: 15px 30px;
  }
  .beyond-col {
      margin-bottom: 35px;
  }
  .market-blocks.radio-design{
    flex-direction: column;
  }
  .market-blocks.radio-design .station-card{
    width: 100%;
    margin-bottom: 65px;
  }
  .print-grid{
    flex-direction: column;
  }
  .print-grid > div{
    width: 100%!important;
    margin-bottom: 55px;
  }
  .print-circle{
    margin-top: 85px;
  }
  .market-blocks.print-design { display: flex; gap: 56px;  }
  .market-blocks.print-design .station-card {
    width: 100%;
    position: relative;
    background: linear-gradient(90deg,rgba(0, 96, 196, 1) 1%, rgba(0, 119, 219, 1) 26%, rgba(0, 155, 255, 1) 100%);
    color: var(--card-text, #fff);
    border-radius: 24px;
    padding: 94px 34px 76px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    box-shadow: 0 20px 44px rgba(0,0,0,.4);
    width: 100%;
  }
  .event-card{
    margin-bottom: 45px;
  }
  .market-blocks.print-design .station-logo {
    position: absolute;
    left: 50%;
    top: -15%;
    transform: translateX(-50%);
    width: 150px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
  }
  .story-grid { grid-template-columns: 1fr; }
  .story-hex { margin: -60px auto 0; width: 200px; }
  .story-cols, .values-cols { grid-template-columns: 1fr; gap: 24px; }
  .values-hexes { gap: 16px; margin-top: -20px; }
  .values-hexes img { width: 110px; }
  .about-values { border-top-left-radius: 50% 40px; border-top-right-radius: 50% 40px; }
  .values-lines br, .values-sub br { display: none; }
}

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .tv-cols { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .beyond-grid { grid-template-columns: 1fr; }
  .beyond-card p { min-height: 0; }
}

@media (max-width: 899px) {
  .hero{
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .hero:before{
    content: '';
    background: url(../assets/norsan/bg-mobile.png) top center no-repeat;
    width: 100%;
    height: 180%;
    top: -120px;
    position: absolute;
    z-index: 2;
    background-size: 156% 44%;
  }
  .hero-band{
    clip-path: none;
  }
  .card-label { backdrop-filter: none; background: rgba(60,60,65,.55); }
  .sidebar {
    transform: translateX(-100%);
    transition: transform .35s ease;
    width: 280px;
  }
  .hero-band-digital{
    background: url(../assets/norsan/bg-mobile.png) top center no-repeat;
    width: 100%;
    height: 180%;
    top: -120px;
    position: absolute;
    z-index: 2;
    background-size: 136% 64%;
  }
  .brands{
    padding: 0 30px;
  }
  .sidebar.open { transform: translateX(0); }
  .overlay.show { opacity: 1; pointer-events: auto; }
  .mobile-header { display: flex; }
  main { margin-left: 0; padding-top: 64px; }
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-cards .hero-card:last-child { grid-column: 1 / -1; max-width: 55%; margin: 0 auto; width: 100%; }
  .hero-cards-wrap { padding: 32px 24px 7vh; }
  .hero-top { padding: 16px 24px 0; }
  .about-grid, .print-grid { grid-template-columns: 1fr; }
  .map-wrap { order: 2; }
  .events-grid { grid-template-columns: 1fr; max-width: 420px; }
  .events-grid { margin-top: 90px; }
  .events-grid .event-card + .event-card { margin-top: 48px; }
  .tv-card {margin-left: 0; padding: 120px 24px; }
  .tv-logo { left: 50%; top: -32px; transform: none; width: 112px; transform: translateX(-50%);}
  .tv-meta{padding: 8px 30px 20px;}
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .markets-list { grid-template-columns: 1fr; }
}
