﻿/* ======================================================
   DELTAVALGA OFFICIAL SITE CSS
   CLEAN MASTER BUILD
   PART 1 : CORE STRUCTURE
====================================================== */


/* ======================================================
   ROOT
====================================================== */

:root{
--dv-accent:#3fd0ff;
--dv-accent-rgb:63,208,255;
}


/* ======================================================
   BASE
====================================================== */

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

html{
scroll-padding-top:116px;
}

body{

font-family:
"Helvetica Neue",
"Hiragino Kaku Gothic ProN",
"Yu Gothic",
Meiryo,
sans-serif;

background:#02040a;
color:#ffffff;

line-height:1.7;

overflow-x:hidden;

}


/* ======================================================
   GLOBAL INNER WIDTH
====================================================== */

.site-inner{
max-width:1200px;
margin:0 auto;
padding:0 40px;
box-sizing:border-box;
}


/* ======================================================
   GLOBAL LINK SYSTEM
====================================================== */

a,
a:visited{
text-decoration:none;
color:inherit;
}

a:hover{
text-decoration:none;
}


/* ======================================================
   SNS BAR
====================================================== */

.sns-bar{

position:fixed;
top:0;
left:0;

width:100%;
height:38px;

background:rgba(2,4,10,0.9);

border-bottom:1px solid rgba(63,208,255,0.15);

z-index:1100;

}

.sns-inner{

width:100%;
height:100%;

display:flex;
align-items:center;
justify-content:flex-end;

gap:14px;

padding:0 40px;

}

/* ===============================
   SNS BAR HUD LINE
=============================== */

.sns-bar{

box-shadow:
0 1px 0 rgba(63,208,255,.15),
0 0 12px rgba(63,208,255,.08);

}


/* ===============================
   SNS BUTTON
=============================== */

.sns-x,
.sns-btn{

font-size:12px;
letter-spacing:.08em;

color:#7fdcff;

padding:5px 12px;

border:1px solid rgba(63,208,255,.4);

transition:.25s ease;

}

.sns-x:hover,
.sns-btn:hover{

background:rgba(63,208,255,.15);
color:#ffffff;

}

==============================
   fb BUTTON
=============================== */


.fb-share{

border-color:rgba(66,103,178,.6);

}

.fb-share:hover{

background:rgba(66,103,178,.18);

}


.header-sns{

position:absolute;

right:24px;
top:14px;

display:flex;
gap:8px;

}


/* ======================================================
   HEADER
====================================================== */

.header{

position:fixed;
top:36px;

width:100%;
height:80px;

background:
linear-gradient(
to bottom,
rgba(2,4,10,.65),
rgba(2,4,10,.25)
);

backdrop-filter:blur(10px);

border-bottom:1px solid rgba(127,220,255,.08);

z-index:1000;

transition:
background .4s ease,
backdrop-filter .4s ease;

}

.header-inner{

width:100%;
height:100%;

padding:0 40px;

display:flex;
align-items:center;
justify-content:space-between;

}


/* ======================================================
   LOGO
====================================================== */

.logo{

display:flex;
align-items:center;
height:100%;

}

.logo img{

height:36px;
width:auto;

opacity:.9;

transition:
opacity .25s ease,
transform .25s ease;

}

.logo:hover img{

opacity:1;
transform:translateY(-1px);

}


/* ======================================================
   NAVIGATION
====================================================== */

.main-nav{

display:flex;
align-items:center;
gap:32px;

}

.main-nav a,
.main-nav a:visited{

color:#7fdcff;

font-weight:bold;

letter-spacing:2.5px;
font-size:15px;

position:relative;

transition:
color .25s ease,
letter-spacing .25s ease;

}

.main-nav a:hover{

color:#afa;
letter-spacing:3px;

}

.main-nav a::after{

content:"";

position:absolute;
left:0;
bottom:-6px;

width:0%;
height:2px;

background:#afa;

box-shadow:0 0 6px #afa;

transition:width .28s cubic-bezier(.22,.8,.28,1);

}

.main-nav a:hover::after{
width:100%;
}

.main-nav a:active{
color:#7fdcff;
}

.main-nav a.active{
color:#7fdcff;
}


/* ======================================================
   DROPDOWN
====================================================== */

.nav-dropdown{

position:relative;
display:flex;
align-items:center;

}

.dropdown-menu{

position:absolute;

top:100%;
left:0;

margin-top:10px;

min-width:160px;

background:rgba(2,4,10,0.96);

backdrop-filter:blur(12px);

border:1px solid rgba(63,208,255,.25);

padding:8px 0;

opacity:0;
transform:translateY(-10px);

pointer-events:none;

transition:.25s ease;

}

.dropdown-menu a{

display:block;

padding:8px 18px;

font-size:13px;
letter-spacing:1px;

white-space:nowrap;

}

.nav-dropdown:hover .dropdown-menu{

opacity:1;
transform:translateY(0);

pointer-events:auto;

}

.nav-dropdown::after{

content:"";

position:absolute;

top:100%;
left:0;

width:100%;
height:14px;

}


/* ======================================================
   SECTION BASE
====================================================== */

.section{

padding:120px 10%;

position:relative;

}

.section.dark{
background:#060a18;
}

.section > *{
position:relative;
z-index:2;
}


/* ======================================================
   SECTION LINE
====================================================== */

.section::before{

content:"";

position:absolute;

top:0;
left:50%;

transform:translateX(-50%);

width:92%;
max-width:1200px;

height:1px;

background:
linear-gradient(
90deg,
transparent,
rgba(var(--dv-accent-rgb),0.15),
rgba(var(--dv-accent-rgb),0.55),
rgba(var(--dv-accent-rgb),0.15),
transparent
);

}


/* ======================================================
   SECTION TITLE
====================================================== */

.section h2{

font-size:15px;

letter-spacing:.16em;

font-weight:600;

color:#9fe6ff;

opacity:.85;

margin-bottom:30px;

text-shadow:
0 0 6px rgba(63,208,255,.25);

}

.section h2::after{

content:"";

display:block;

width:100px;
height:1px;

margin-top:6px;

opacity:.55;

background:
linear-gradient(
90deg,
rgba(var(--dv-accent-rgb),.7),
rgba(var(--dv-accent-rgb),.25),
transparent
);

}


/* ======================================================
   HERO
====================================================== */

.hero{

height:100vh;

position:relative;

overflow:hidden;

}

.hero img{

width:100%;
height:100%;

object-fit:cover;

object-position:center 42%;

filter:
brightness(.82)
contrast(1.08)
saturate(.88)
hue-rotate(-12deg);

transform:translateZ(0) scale(1.05);

transition:transform 1.6s cubic-bezier(.22,.8,.28,1);

}

.hero.flash-react img{
transform:scale(1.065);
}


/* HERO OVERLAY */

.hero::after{

content:"";

position:absolute;
inset:0;

pointer-events:none;

background:

radial-gradient(
ellipse at 50% 68%,
rgba(170,255,170,.06),
rgba(170,255,170,.03) 25%,
transparent 60%
),

linear-gradient(
to bottom,
rgba(2,4,10,.08),
rgba(2,4,10,.38)
);

}


/* HERO TITLE */

.hero-title{

position:absolute;

left:50%;
bottom:26%;

transform:translate(-50%, 20px);

text-align:center;

max-width:900px;
width:90%;

opacity:0;

animation:heroTitleFade 1.2s ease forwards;

z-index:2;

}

.hero-title h1{

font-size:64px;

line-height:1;

display:flex;
flex-direction:column;
align-items:center;

color:#ffffff;

text-shadow:
0 2px 10px rgba(0,0,0,.8),
0 0 2px rgba(170,255,170,.22);

}

.hero-pre{

display:block;

font-size:.55em;

letter-spacing:6px;

margin-bottom:0.3em;

}

.hero-main{
letter-spacing:-0.04em;
}


/* HERO TITLE FADE */

@keyframes heroTitleFade{

to{

opacity:1;
transform:translate(-50%,0);

}

}


/* ======================================================
   NEWS SYSTEM
====================================================== */

.news-timeline{

position:relative;

margin-top:40px;

padding-left:28px;

}

.news-timeline::before{

content:"";

position:absolute;

left:8px;
top:0;
bottom:0;

width:1px;

background:

linear-gradient(
to bottom,
transparent,
rgba(var(--dv-accent-rgb),.28),
transparent
);

}


/* NEWS ITEM */

.news-item{

position:relative;

padding:14px 16px;

margin-bottom:12px;

border-left:1px solid rgba(63,208,255,.15);

transition:background .2s ease;

}

.news-item::after{

content:"";

position:absolute;

left:-21px;
top:18px;

width:6px;
height:6px;

border-radius:50%;

background:rgba(var(--dv-accent-rgb),.65);

}

.news-item:hover{
background:rgba(63,208,255,.04);
}

/* ORIGIN */

.news-item.origin::after{

background:#afa;

width:7px;
height:7px;

opacity:.75;

}


/* TEXT */

.news-meta{

display:block;

font-size:11px;

letter-spacing:.12em;

color:#7fdcff;

opacity:.55;

margin-bottom:4px;

}

.news-title{

font-size:16px;

font-weight:500;

margin-bottom:3px;

}

.news-desc{

font-size:13px;

color:#8a97a6;

line-height:1.6;

}


/* ARCHIVE */

.news-archive{
margin-top:20px;
}

.news-archive-toggle{

background:none;

border:none;

color:#7fdcff;

font-size:12px;

letter-spacing:.12em;

cursor:pointer;

opacity:.6;

}

.news-archive-toggle:hover{
opacity:1;
}

.news-archive-list{

max-height:0;

overflow:hidden;

transition:max-height .45s ease;

}

.news-archive.open .news-archive-list{

max-height:1600px;

margin-top:18px;

}


/* ======================================================
   WORLD DATABASE
====================================================== */

.world-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(320px,1fr));

gap:28px;

margin-top:40px;

}


/* CARD */

.world-card{

position:relative;

padding:22px 20px;

border:1px solid rgba(63,208,255,.15);

background:rgba(6,10,24,.55);

transition:

background .25s ease,
border-color .25s ease,
transform .25s ease;

}

.world-card:hover{

background:rgba(63,208,255,.06);

border-color:rgba(63,208,255,.35);

transform:translateY(-3px);

}


/* META */

.world-meta{

font-size:10px;

letter-spacing:.22em;

color:#7fdcff;

opacity:.55;

margin-bottom:6px;

}

.world-code{

font-size:11px;

letter-spacing:.18em;

color:#9fe6ff;

opacity:.6;

margin-bottom:10px;

}

.world-term{

font-size:18px;

letter-spacing:.05em;

margin-bottom:2px;

color:#7fdcff;

}

.world-desc{

font-size:14px;

color:#9aa6b2;

line-height:1.7;

}


/* LEFT DATA LINE */

.world-card::before{

content:"";

position:absolute;

left:0;
top:0;
bottom:0;

width:2px;

background:

linear-gradient(
to bottom,
transparent,
rgba(63,208,255,.5),
transparent
);

opacity:0;

transition:opacity .3s ease;

}

.world-card:hover::before{
opacity:.8;
}


/* ======================================================
   ACCESS LEVEL
====================================================== */

.access-level{

margin-left:10px;

padding:2px 6px;

font-size:9px;

letter-spacing:.18em;

border:1px solid;

opacity:.7;

}

/* PUBLIC */

.level-public{

color:#7fdcff;

border-color:rgba(127,220,255,.25);

opacity:.35;

}

/* INTERNAL */

.level-internal{
opacity:.55;
}

/* RESTRICTED */

.level-restricted{

color:#afa;

border-color:rgba(170,255,170,.5);

}

/* CLASSIFIED */

.level-classified{

color:#ff6a6a;

border-color:rgba(255,106,106,.75);

background:rgba(255,80,80,.08);

font-weight:600;

letter-spacing:.22em;

}


/* CLASSIFIED CARD */

.world-card:has(.level-classified):hover{

border-color:rgba(255,90,90,.65);

background:rgba(40,10,10,.65);

}

.world-card:has(.level-classified):hover::before{

background:

linear-gradient(
to bottom,
transparent,
rgba(255,90,90,.75),
transparent
);

}


/* WORLD LOG */

.world-log{

margin-top:14px;

padding-top:10px;

font-size:10px;

letter-spacing:.18em;

color:#7fdcff;

opacity:.35;

border-top:1px solid rgba(63,208,255,.12);

}


/* ======================================================
   MUSIC SECTION
====================================================== */

.music-list{

display:flex;
flex-direction:column;

gap:90px;

margin-top:40px;

}

.music-layout{

display:grid;

grid-template-columns:1fr;

gap:28px;

align-items:center;

}

.music-role{

font-size:14px;

letter-spacing:3px;

opacity:.5;

margin-bottom:18px;

color:#7fdcff;

}

.music-video{

position:relative;

width:100%;

aspect-ratio:16/9;

background:#050a18;

border:1px solid rgba(63,208,255,.15);

overflow:hidden;

filter:brightness(.75) contrast(.95);

transition:filter .3s ease;

}

.music-video iframe{

position:absolute;

inset:0;

width:100%;
height:100%;

border:0;

}

.music-video:hover{
filter:brightness(.8);
}

.music-info{

display:flex;

flex-direction:column;

gap:12px;

max-width:720px;

}

.music-title{

font-size:22px;

}

.music-title a{
color:var(--dv-accent);
}

.music-release{

font-size:13px;

color:#8fa3b5;

margin-bottom:15px;

}

.music-credit{

list-style:none;

margin-bottom:20px;

}

.music-credit span{

display:inline-block;

width:120px;

opacity:.5;

}

.music-links{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.music-links a{

padding:8px 14px;

border:1px solid rgba(63,208,255,.35);

background:rgba(63,208,255,.06);

font-weight:600;

letter-spacing:.08em;

color:#7fdcff;

}

.music-links a:hover{
background:rgba(63,208,255,.18);
}


/* ======================================================
   MUSIC COMING SOON
====================================================== */

.music-coming{

opacity:.72;

transition:opacity .4s ease;

}

.music-coming:hover{
opacity:.82;
}

.music-coming .music-video{

display:flex;

align-items:center;

justify-content:center;

background:#050a18;

}

.music-coming .music-video::after{

content:"ARCHIVE LOCKED";

font-size:10px;

letter-spacing:.28em;

color:#7fdcff;

opacity:.45;

}


/* ======================================================
   CHARACTER SECTION
====================================================== */

.character-archive{
background:#070b11;
}


/* GRID */

.character-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

align-items:start;

margin-top:40px;

}


/* GROUP */

.character-group{

grid-column:1 / -1;

font-size:12px;

letter-spacing:.22em;

color:#7fdcff;

opacity:.55;

margin-top:40px;
margin-bottom:12px;

}


/* CARD */

.character-card{

position:relative;

display:flex;

flex-direction:column;

background:#0b1119;

border:1px solid rgba(127,220,255,.15);

padding:14px;

transition:
transform .22s ease,
box-shadow .22s ease,
border-color .22s ease;

}

.character-card:hover{

transform:translateY(-3px);

box-shadow:
0 8px 18px rgba(0,0,0,.35),
0 0 12px rgba(63,208,255,.10);

border-color:rgba(127,220,255,.35);

}


/* IMAGE FRAME */

.character-head{

position:relative;

overflow:hidden;

padding:12px;

background:#0e1628;

border:1px solid rgba(63,208,255,.25);

margin-bottom:12px;

}

.character-head img{

width:100%;

aspect-ratio:1/1;

object-fit:contain;

display:block;

}


/* IMAGE MONITOR EFFECT */

.character-head::after{

content:"";

position:absolute;

inset:0;

background:

repeating-linear-gradient(
to bottom,
rgba(255,255,255,.03) 0px,
rgba(255,255,255,.03) 1px,
transparent 2px,
transparent 4px
);

mix-blend-mode:overlay;

opacity:.25;

pointer-events:none;

}


/* META BLOCK */

.character-meta-block{

position:absolute;

left:0;
right:0;
bottom:0;

padding:14px 16px;

background:

linear-gradient(
to top,
rgba(6,10,24,.85) 0%,
rgba(6,10,24,.65) 40%,
rgba(6,10,24,0) 100%
);

text-align:center;

}


/* TEXT */

.character-meta{

font-size:10px;

letter-spacing:.18em;

opacity:.45;

margin-bottom:6px;

}

.character-name{

font-size:20px;

font-weight:600;

letter-spacing:.04em;

margin-bottom:2px;

color:#ffffff;

text-shadow:0 0 6px rgba(63,208,255,.25);

}

.character-name-en{

font-size:11px;

letter-spacing:.18em;

color:#9fe6ff;

opacity:.7;

margin-bottom:6px;

}

.character-role{

font-size:12px;

letter-spacing:.08em;

opacity:.85;

}

.character-age{

font-size:11px;

opacity:.55;

}


/* DESCRIPTION */

.character-desc{

margin:10px 0;

line-height:1.6;

min-height:3.4em;

font-size:13px;

}


/* META ROW */

.character-meta-row{

display:flex;

align-items:center;

gap:18px;

margin-top:6px;

font-size:11px;

letter-spacing:.08em;

opacity:.75;

}

.character-status{
white-space:nowrap;
}


/* VOICE */

.voice-trigger{

cursor:pointer;

font-size:12px;

letter-spacing:.12em;

opacity:.9;

user-select:none;

}

.voice-trigger:hover{
opacity:.7;
}

.voice-trigger.playing{

color:#ff9b3d;

animation:voiceBlink 1s infinite;

}

@keyframes voiceBlink{

0%{opacity:1;}
50%{opacity:.35;}
100%{opacity:1;}

}


/* UNIT CARD */

.character-unit{

grid-column:1 / -1;

max-width:900px;

margin-left:auto;
margin-right:auto;

}

/* UNIT VIEWER */

.unit-viewer{

position:relative;

margin:14px 0;

}

/* UNIT IMAGE */

.unit-image{

display:none;

width:100%;

height:auto;

}

.unit-image.active{

display:block;

}

/* VIEW CONTROL */

.unit-controls{

display:flex;

align-items:center;

gap:10px;

margin-top:10px;

font-size:11px;

letter-spacing:.22em;

}

/* VIEW LABEL */

.unit-label{

opacity:.45;

color:#7fdcff;

}

/* VIEW TAB */

.unit-tab{

background:none;

border:none;

color:#7fdcff;

opacity:.35;

cursor:pointer;

padding:0;

transition:opacity .25s ease;

}

.unit-tab:hover{

opacity:.6;

}

.unit-tab.active{

opacity:.95;

text-shadow:0 0 6px rgba(63,208,255,.35);

}

.unit-tab.disabled{

opacity:.25;

cursor:default;

}

.spec-list{

list-style:none;
padding-left:0;
margin:0;

}

.spec-list li{

display:flex;
gap:0px;

}

.spec-list span{

width:90px;
opacity:.5;

}


/* ======================================================
   CAST / STAFF CREDIT
====================================================== */

.credit-roll{

display:flex;
flex-direction:column;

gap:26px;

margin-top:30px;

max-width:520px;

margin-inline:auto;

}

.credit-block{

text-align:center;

padding:10px 0;

}

.credit-role{

display:block;

font-size:11px;

letter-spacing:.22em;

color:#7fdcff;

opacity:.6;

margin-bottom:6px;

min-height:1.6em;

line-height:1.6;

}

.credit-name{

display:block;

font-size:16px;

letter-spacing:.05em;

color:#ffffff;

min-height:1.4em;

line-height:1.4;

}


/* ======================================================
   CAST GRID MODE (PC)
====================================================== */

@media (min-width:900px){

.cast-section .credit-roll{

display:grid;

grid-template-columns:
repeat(auto-fit, minmax(260px,1fr));

column-gap:72px;
row-gap:28px;

max-width:900px;

margin-inline:auto;

}

.cast-section .credit-block{
text-align:left;
}

.cast-section .credit-role{

font-size:10px;

letter-spacing:.24em;

opacity:.55;

}

.cast-section .credit-name{

font-size:17px;

letter-spacing:.04em;

}

}


/* ======================================================
   STAFF ROLE WRAP
====================================================== */

.staff-section .credit-role{

max-width:520px;

margin-inline:auto;

line-height:1.9;

text-wrap:balance;

}


/* ======================================================
   HERO PREVIEW BUTTON
====================================================== */

.hero-preview-btn{

margin-top:18px;

background:none;

border:1px solid rgba(63,208,255,.45);

color:#7fdcff;

padding:10px 22px;

font-size:13px;

letter-spacing:.14em;

cursor:pointer;

transition:.25s;

backdrop-filter:blur(4px);

background:rgba(2,4,10,.35);

box-shadow:
inset 0 0 12px rgba(63,208,255,.08);

}

.hero-preview-btn:not(:disabled):hover{

background:rgba(63,208,255,.15);

}

.hero-preview-btn:disabled{

opacity:.55;

cursor:default;

border-color:rgba(63,208,255,.25);

color:rgba(127,220,255,.7);

}

.hero-preview-btn::before{

content:"";

display:inline-block;

width:0;
height:0;

border-left:8px solid #7fdcff;
border-top:5px solid transparent;
border-bottom:5px solid transparent;

margin-right:10px;

transform:translateY(1px);

}

.hero-preview-status{

margin-top:8px;

font-size:11px;

letter-spacing:.14em;

color:#7fdcff;

opacity:.35;

}


/* ======================================================
   HUD OVERLAY
====================================================== */

.hud-overlay{

position:fixed;

inset:0;

pointer-events:none;

z-index:1;

mix-blend-mode:screen;

}

.hud-overlay::before{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(rgba(63,208,255,0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(63,208,255,0.06) 1px, transparent 1px);

background-size:80px 80px;

opacity:.25;

}

.hud-overlay::after{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(
to bottom,
transparent 0%,
rgba(63,208,255,0.12) 50%,
transparent 100%
);

height:120px;

animation:hudSweep 9s linear infinite;

}

@keyframes hudSweep{

0%{transform:translateY(-150%);opacity:0;}
10%{opacity:1;}
90%{opacity:1;}
100%{transform:translateY(150%);opacity:0;}

}


/* ======================================================
   STORY SECTION
====================================================== */

.story-block{

max-width:640px;

margin:40px auto 0;

text-align:center;

color:#cfe7ff;

line-height:2.1;

letter-spacing:.06em;

font-size:16px;

}

.story-gap{
margin-top:2.6em;
}

.story-end{

margin-top:3em;

opacity:.85;

}

.story-line{

display:inline-block;

width:1.6em;

height:1px;

background:#cfe7ff;

margin-right:.4em;

transform:translateY(-0.25em);

}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width:900px){

.site-inner{
padding:0 28px;
}

.character-grid{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.site-inner{
padding:0 20px;
}

.character-grid{

grid-template-columns:1fr;

gap:24px;

}

.character-head img{

width:78%;

margin:auto;

display:block;

}

.music-layout{
grid-template-columns:1fr;
}

}


/* =================================================
   ABOUT SECTION
================================================= */

.about-section{

max-width:1100px;
margin:0 auto;

padding-top:70px;
padding-bottom:90px;

position:relative;

}


/* ===============================
   HUD LINE（追加8行）
=============================== */

.about-section::before{

content:"";
position:absolute;

top:0;
left:50%;

width:90%;
height:1px;

background:rgba(127,220,255,.15);

transform:translateX(-50%);

}


/* ===============================
   ABOUT TEXT
=============================== */

.about-text{

max-width:760px;

margin-left:auto;
margin-right:auto;

font-size:13px;
line-height:1.6;

color:#9aa6b2;

}

.about-text p{
margin-bottom:10px;
}


/* ===============================
   DIVIDER
=============================== */

/* ABOUT 区切り線 */

.about-divider{

width:760px;

margin:36px auto;

border:none;
height:1px;

background:rgba(127,220,255,.15);

}

/* ===============================
   NOTE
=============================== */

.about-note{

margin-top:18px;

font-size:13px;
line-height:1.6;

opacity:.8;

}

.about-note.en{
opacity:.6;
}


/* ===============================
   NETWORK
=============================== */

.about-network{

margin-top:30px;

display:flex;
flex-direction:column;

align-items:center;

}


/* ===============================
   BANNER GRID
=============================== */

.banner-grid{

display:grid;

grid-template-columns:repeat(2,468px);

gap:18px 24px;

justify-content:center;

margin-bottom:32px;

}

.banner-grid img{

width:468px;
height:60px;

display:block;

}


/* ===============================
   RELATED LINKS
=============================== */

.related-grid{

display:grid;

grid-template-columns:repeat(3,auto);

justify-content:center;

gap:18px;

align-items:center;

margin-top:10px;
margin-bottom:22px;

}

.about-inner{
max-width:760px;
margin:0 auto;
}


/* ===============================
   MOBILE
=============================== */

@media (max-width:640px){

.banner-grid{

grid-template-columns:1fr;

}

.banner-grid img{

width:100%;
max-width:468px;

}

.related-grid{

flex-wrap:wrap;

}

}

.about-section{
padding-bottom:110px;
}



/* ===============================
   COPYRIGHT
=============================== */

.copyright{

text-align:center;

margin-top:32px;
margin-bottom:10px;

font-size:12px;
opacity:.6;

letter-spacing:.08em;

}


/* ===============================
   SECTION TITLE LINE
=============================== */

.section h2{

font-size:14px;
letter-spacing:.22em;

color:#7fdcff;

margin-bottom:26px;

position:relative;

display:inline-block;

}

.section h2::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:40px;
height:1px;

background:rgba(127,220,255,.35);

}

/* ===============================
   FOOTER END LINE
=============================== */

.about-section::after{

content:"";

display:block;

width:760px;

height:1px;

margin:40px auto 0;

background:rgba(127,220,255,.12);

}


