/* =========================================================
K6ISS AMATEUR RADIO PORTFOLIO
Main stylesheet
========================================================= */

/* =========================================================

1. COLOR VARIABLES
   ========================================================= */

:root {
--background: #0d1117;
--background-soft: #111827;
--card-background: #161b22;
--card-background-light: #1d2633;

--text-primary: #f5f7fa;
--text-secondary: #aeb8c4;

--accent: #00b7ff;
--accent-hover: #35ccff;
--accent-dark: #007eae;

--border: rgba(255, 255, 255, 0.11);
--overlay: rgba(0, 0, 0, 0.88);

--shadow-small: 0 8px 20px rgba(0, 0, 0, 0.25);
--shadow-large: 0 18px 45px rgba(0, 0, 0, 0.4);

--border-radius-small: 10px;
--border-radius-medium: 16px;
--border-radius-large: 24px;

--page-width: 1200px;
--header-height: 74px;

--transition: 0.3s ease;

}

/* Light-mode colors */

body.light-mode {
--background: #f2f5f8;
--background-soft: #e8edf2;
--card-background: #ffffff;
--card-background-light: #f8fafc;

--text-primary: #121820;
--text-secondary: #56616e;

--border: rgba(0, 0, 0, 0.12);

--shadow-small: 0 8px 20px rgba(0, 0, 0, 0.1);
--shadow-large: 0 18px 45px rgba(0, 0, 0, 0.15);

}

/* =========================================================
2. RESET AND BASE STYLES
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
min-height: 100vh;

font-family:
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;

background: var(--background);
color: var(--text-primary);
line-height: 1.6;

transition:
    background-color var(--transition),
    color var(--transition);

}

body.lightbox-open {
overflow: hidden;
}

img {
display: block;
max-width: 100%;
}

a {
color: inherit;
text-decoration: none;
}

button,
input,
textarea,
select {
font: inherit;
}

button {
color: inherit;
}

ul {
list-style-position: inside;
}

section {
padding: 90px 5%;
}

.section-heading {
width: min(100%, 760px);
margin: 0 auto 48px;
text-align: center;
}

.section-heading h2 {
margin-bottom: 14px;
font-size: clamp(2rem, 4vw, 2.8rem);
line-height: 1.2;
}

.section-heading > p:last-child {
color: var(--text-secondary);
font-size: 1.05rem;
}

.section-label {
margin-bottom: 10px;
color: var(--accent);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

/* =========================================================
3. REUSABLE BUTTONS
========================================================= */

.button {
display: inline-flex;
align-items: center;
justify-content: center;

min-height: 46px;
padding: 11px 24px;

border: 2px solid transparent;
border-radius: 999px;

font-weight: 700;

transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);

}

.button:hover {
transform: translateY(-3px);
}

.button-primary {
background: var(--accent);
color: #00131c;
}

.button-primary:hover {
background: var(--accent-hover);
}

.button-secondary {
border-color: var(--accent);
background: transparent;
color: var(--accent);
}

.button-secondary:hover {
background: var(--accent);
color: #00131c;
}

/* =========================================================
4. HEADER AND NAVIGATION
========================================================= */

.site-header {
position: sticky;
top: 0;
z-index: 1000;

height: var(--header-height);

background: rgba(13, 17, 23, 0.88);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(14px);

}

body.light-mode .site-header {
background: rgba(255, 255, 255, 0.9);
}

.navbar {
width: min(100% - 32px, var(--page-width));
height: 100%;
margin: 0 auto;

display: flex;
align-items: center;
gap: 28px;

}

.logo {
display: inline-flex;
align-items: center;

margin-right: auto;

color: var(--accent);
font-size: 1.35rem;
font-weight: 800;
letter-spacing: 0.03em;

}

.logo-image {
display: block;
width: auto;
height: 62px;
max-width: 220px;
object-fit: contain;
}

.nav-links {
display: flex;
align-items: center;
gap: 26px;
}

.nav-links a {
position: relative;

padding: 8px 0;

color: var(--text-secondary);
font-weight: 600;

transition: color var(--transition);

}

.nav-links a::after {
content: "";

position: absolute;
left: 0;
bottom: 0;

width: 0;
height: 2px;

background: var(--accent);

transition: width var(--transition);

}

.nav-links a:hover {
color: var(--accent);
}

.nav-links a:hover::after {
width: 100%;
}

.theme-toggle,
.menu-toggle {
border: 0;
background: transparent;
cursor: pointer;
}

.theme-toggle {
display: grid;
place-items: center;

width: 42px;
height: 42px;

border: 1px solid var(--border);
border-radius: 50%;

font-size: 1.25rem;

transition:
    background-color var(--transition),
    transform var(--transition);

}

.theme-toggle:hover {
background: var(--card-background);
transform: rotate(10deg);
}

.menu-toggle {
display: none;
width: 42px;
height: 42px;
}

.menu-toggle span {
display: block;

width: 25px;
height: 2px;
margin: 5px auto;

background: var(--text-primary);

transition:
    transform var(--transition),
    opacity var(--transition);

}

/* =========================================================
5. HERO SECTION
========================================================= */

.hero {
position: relative;

min-height: calc(100vh - var(--header-height));

display: grid;
place-items: center;

overflow: hidden;

background:
    linear-gradient(
        rgba(0, 0, 0, 0.58),
        rgba(0, 0, 0, 0.78)
    ),
    url("../images/hero-bg.jpg")
    center / cover no-repeat;

}

.hero-overlay {
position: absolute;
inset: 0;

background:
    radial-gradient(
        circle at center,
        rgba(0, 183, 255, 0.15),
        transparent 55%
    );

pointer-events: none;

}

.hero-content {
position: relative;
z-index: 1;

width: min(100%, 900px);
margin: 0 auto;
text-align: center;

}

.hero-label {
margin-bottom: 10px;

color: var(--accent);
font-size: 0.9rem;
font-weight: 800;
letter-spacing: 0.18em;
text-transform: uppercase;

}

.hero h1 {
color: #ffffff;
font-size: clamp(4rem, 12vw, 8rem);
line-height: 0.95;
letter-spacing: 0.04em;
text-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.hero h2 {
margin-top: 22px;

color: #ffffff;
font-size: clamp(1.35rem, 3vw, 2rem);
font-weight: 500;

}

.hero-description {
width: min(100%, 720px);
margin: 22px auto 0;

color: #d8e0e8;
font-size: 1.08rem;

}

.hero-buttons {
margin-top: 32px;

display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;

}

.hero-details {
width: min(100%, 720px);
margin: 48px auto 0;
padding: 20px;

display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;

background: rgba(12, 20, 29, 0.72);
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: var(--border-radius-large);
backdrop-filter: blur(12px);

}

.hero-detail {
padding: 10px 16px;

display: flex;
flex-direction: column;
gap: 4px;

}

.hero-detail + .hero-detail {
border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-detail-label {
color: #aeb8c4;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.hero-detail strong {
color: #ffffff;
}

/* =========================================================
6. ABOUT SECTION
========================================================= */

.about-section {
background: var(--background);
}

.about-grid {
width: min(100%, var(--page-width));
margin: 0 auto;

display: grid;
grid-template-columns: minmax(280px, 420px) 1fr;
gap: 56px;
align-items: center;

}

.about-image-wrapper {
position: relative;
overflow: hidden;
background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-large);
box-shadow: var(--shadow-large);

}

.about-image-wrapper::before {
content: none;
display: none;

}

.about-image {
position: relative;
z-index: 1;

width: 100%;
aspect-ratio: 1 / 1;

object-fit: cover;

border-radius: calc(var(--border-radius-large) - 1px);
box-shadow: none;

}

.about-content h3 {
margin-bottom: 4px;

font-size: clamp(1.8rem, 4vw, 2.5rem);

}

.about-call-sign {
margin-bottom: 20px;

color: var(--accent);
font-weight: 800;

}

.about-content > p:not(.about-call-sign) {
margin-bottom: 16px;
color: var(--text-secondary);
}

.about-details {
margin-top: 28px;

display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;

}

.about-detail {
padding: 18px;

display: flex;
flex-direction: column;
gap: 5px;

background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-medium);

}

.about-detail span {
color: var(--text-secondary);
font-size: 0.82rem;
}

.about-detail strong {
color: var(--accent);
}

/* =========================================================
7. STATION SECTION
========================================================= */

.station-section {
background: var(--background-soft);
}

.station-layout {
width: min(100%, var(--page-width));
margin: 0 auto;

display: grid;
grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
gap: 28px;

}

.station-card,
.station-summary {
background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-large);
box-shadow: var(--shadow-small);
}

.station-card {
padding: 32px;
}

.station-card-header {
margin-bottom: 28px;

display: flex;
align-items: center;
gap: 18px;

}

.station-icon {
display: grid;
place-items: center;

width: 58px;
height: 58px;

flex: 0 0 auto;

background: rgba(0, 183, 255, 0.12);
border-radius: 16px;

font-size: 1.8rem;

}

.station-card-label {
color: var(--accent);
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
}

.station-card h3,
.station-summary h3 {
font-size: 1.45rem;
}

.station-details-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
}

.station-detail {
padding: 22px;

background: var(--card-background-light);
border: 1px solid var(--border);
border-radius: var(--border-radius-medium);

}

.station-detail h4 {
margin-bottom: 10px;
color: var(--accent);
}

.station-detail ul {
color: var(--text-secondary);
}

.station-detail li + li {
margin-top: 5px;
}

.station-summary {
padding: 30px;
}

.station-summary h3 {
margin-bottom: 20px;
}

.station-summary-row {
padding: 14px 0;

display: flex;
justify-content: space-between;
gap: 20px;

border-bottom: 1px solid var(--border);

}

.station-summary-row:last-child {
border-bottom: 0;
}

.station-summary-row span {
color: var(--text-secondary);
}

.station-summary-row strong {
text-align: right;
}

.stats-grid {
width: min(100%, var(--page-width));
margin: 32px auto 0;

display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 22px;

}

.stat-card {
padding: 28px 20px;
text-align: center;

background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-large);
box-shadow: var(--shadow-small);

transition:
    transform var(--transition),
    box-shadow var(--transition);

}

.stat-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-large);
}

.stat-card .stat-icon {
display: block;
margin-bottom: 10px;
font-size: 2.3rem;
}

.counter {
display: block;

color: var(--accent);
font-size: 2.8rem;
line-height: 1.1;

}

.stat-card p {
margin-top: 8px;
color: var(--text-secondary);
}

/* =========================================================
8. GALLERY SECTION
========================================================= */

.gallery-section {
background: var(--background);
}

.gallery-filters {
margin-bottom: 18px;

display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;

}

.filter-btn {
min-width: 105px;
padding: 10px 22px;

border: 1px solid var(--border);
border-radius: 999px;

background: var(--card-background);
color: var(--text-primary);

cursor: pointer;
font-weight: 700;

transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);

}

.filter-btn:hover,
.filter-btn.active {
background: var(--accent);
border-color: var(--accent);
color: #00131c;
transform: translateY(-2px);
}

.gallery-grid {
    width: min(100%, 1400px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(min(100%, 260px), 1fr)
    );
    gap: 24px;
}

.gallery-item {
width: 100%;
overflow: hidden;

background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-large);
box-shadow: var(--shadow-small);

transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);

}

.gallery-item:hover {
transform: translateY(-7px);
box-shadow: var(--shadow-large);
}

.gallery-item.is-hidden {
display: none;
}

.gallery-image-button {
width: 100%;
height: 300px;
padding: 0;

display: block;

overflow: hidden;

border: 0;
background: #080b0f;

cursor: zoom-in;

}

.gallery-image-button img,
.gallery-sprite-thumbnail {
width: 100%;
height: 100%;

object-fit: contain;

transition: transform 0.45s ease;

display: block;

}

.gallery-subfilters {
    width: min(100% - 32px, 900px);
    margin: 0 auto 34px;
    padding: 14px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 183, 255, 0.28);
    border-radius: 16px;
    background: rgba(0, 183, 255, 0.055);
}

.gallery-subfilters[hidden] {
    display: none;
}

.gallery-subfilters-label {
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 700;
}

.subfilter-btn,
.pagination-button {
    min-height: 42px;
    padding: 8px 17px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card-background);
    color: var(--text-primary);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.subfilter-btn:hover,
.subfilter-btn.active,
.pagination-button:hover:not(:disabled) {
    border-color: var(--accent);
    background: var(--accent);
    color: #00131c;
    transform: translateY(-2px);
}

.pagination-button:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.gallery-sprite-thumbnail {
background-repeat: no-repeat;
background-color: #080b0f;

}

.gallery-item:hover .gallery-image-button img,
.gallery-item:hover .gallery-sprite-thumbnail {
transform: scale(1.04);
}

.gallery-content {
padding: 20px;
}

.gallery-category {
display: inline-flex;

padding: 5px 11px;

background: rgba(0, 183, 255, 0.14);
border: 1px solid rgba(0, 183, 255, 0.3);
border-radius: 999px;

color: var(--accent);
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;

}

.gallery-content h3 {
margin-top: 13px;
font-size: 1.25rem;
}

.gallery-content p {
margin-top: 7px;
color: var(--text-secondary);
}

.gallery-meta {
font-size: 0.9rem;
}

.gallery-toolbar {
    width: min(100%, 1400px);
    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.gallery-search {
    flex: 1 1 320px;
}

.gallery-search input {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: var(--card-background);
    color: var(--text-primary);
    outline: none;
}

.gallery-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 183, 255, 0.15);
}

#gallery-count {
    color: var(--text-secondary);
    font-weight: 600;
}

.gallery-pagination {
    width: min(100% - 32px, 760px);
    margin: 38px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

#page-status {
    min-width: 108px;
    color: var(--text-primary);
    text-align: center;
}

.page-jump {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.page-jump input {
    width: 72px;
    min-height: 42px;
    padding: 7px 9px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--card-background);
    color: var(--text-primary);
    font: inherit;
    text-align: center;
}

.page-jump input:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(0, 183, 255, 0.16);
}

.gallery-loading,
.gallery-empty,
.gallery-error {
    grid-column: 1 / -1;
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 28px;
    color: var(--text-secondary);
    text-align: center;
}

.gallery-error {
    color: #ff9cab;
}

.gallery-item {
    position: relative;
    isolation: isolate;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    border-radius: inherit;
    background: linear-gradient(
        145deg,
        rgba(0, 183, 255, 0.12),
        transparent 45%
    );
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::before {
    opacity: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}
/* =========================================================
9. LIGHTBOX
========================================================= */

.lightbox {
position: fixed;
inset: 0;
z-index: 3000;

padding: 12px;

display: none;
align-items: center;
justify-content: center;

background: var(--overlay);

}

.lightbox.is-open {
display: flex;
}

.lightbox-content {
width: min(96vw, 1430px, calc(92vh * 10 / 7));
max-height: 96vh;

display: flex;
flex-direction: column;
align-items: center;
gap: 10px;

}

.lightbox-stage {
position: relative;
width: 100%;
aspect-ratio: 10 / 7;
overflow: hidden;

display: grid;
place-items: center;

background: #080b0f;
border-radius: var(--border-radius-medium);
box-shadow: var(--shadow-large);
}

.lightbox-preview,
.lightbox-content img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;

transition: opacity 0.28s ease;
}

.lightbox-preview {
z-index: 1;
display: block;
background-repeat: no-repeat;
background-color: #080b0f;
opacity: 1;
}

.lightbox-content img {
z-index: 2;
object-fit: contain;
opacity: 0;
}

.lightbox-content img.is-loaded {
opacity: 1;
}

.lightbox-preview.is-replaced {
opacity: 0;
}

.lightbox-loading {
position: absolute;
z-index: 3;
left: 50%;
bottom: 16px;
transform: translateX(-50%);

padding: 7px 13px;
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 999px;

background: rgba(0, 0, 0, 0.68);
color: #ffffff;
font-size: 0.78rem;
font-weight: 700;
white-space: nowrap;

transition: opacity 0.2s ease;
}

.lightbox-loading.is-hidden {
opacity: 0;
pointer-events: none;
}

.lightbox-content figcaption {
min-height: 24px;

color: #ffffff;
text-align: center;
font-weight: 600;

}

.lightbox-close,
.lightbox-navigation {
position: absolute;

border: 0;
background: rgba(0, 0, 0, 0.45);
color: #ffffff;

cursor: pointer;

transition:
    background-color var(--transition),
    transform var(--transition);

}

.lightbox-close {
top: 24px;
right: 28px;

width: 48px;
height: 48px;

border-radius: 50%;

font-size: 2.1rem;
line-height: 1;

}

.lightbox-navigation {
top: 50%;
transform: translateY(-50%);

width: 52px;
height: 72px;

border-radius: 14px;

font-size: 2rem;

}

.lightbox-close:hover,
.lightbox-navigation:hover {
background: var(--accent);
color: #00131c;
}

.lightbox-previous {
left: 24px;
}

.lightbox-next {
right: 24px;
}

/* =========================================================
10. ONLINE LINKS SECTION
========================================================= */

.online-section {
background: var(--background-soft);
}

.online-grid {
width: min(100%, var(--page-width));
margin: 0 auto;

display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 22px;

}

.online-card {
padding: 30px 24px;

display: flex;
flex-direction: column;
align-items: center;

text-align: center;

background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-large);
box-shadow: var(--shadow-small);

transition:
    transform var(--transition),
    box-shadow var(--transition);

}

.online-card:hover {
transform: translateY(-7px);
box-shadow: var(--shadow-large);
}

.online-icon {
margin-bottom: 16px;
font-size: 2.7rem;
}

.online-card h3 {
margin-bottom: 10px;
color: var(--accent);
}

.online-card p {
flex-grow: 1;
color: var(--text-secondary);
}

.online-card a {
margin-top: 22px;
padding: 10px 22px;

border-radius: 999px;

background: var(--accent);
color: #00131c;

font-weight: 800;

transition:
    background-color var(--transition),
    transform var(--transition);

}

.online-card a:hover {
background: var(--accent-hover);
transform: translateY(-2px);
}

/* =========================================================
11. CONTACT SECTION
========================================================= */

.contact-section {
background: var(--background);
}

.contact-card {
width: min(100%, 620px);
margin: 0 auto;
padding: 42px;

text-align: center;

background: var(--card-background);
border: 1px solid var(--border);
border-radius: var(--border-radius-large);
box-shadow: var(--shadow-small);

}

.contact-card h3 {
color: var(--accent);
font-size: 2rem;
}

.contact-card p {
margin-top: 6px;
color: var(--text-secondary);
}

.contact-card .button {
margin-top: 24px;
}

/* =========================================================
12. BACK-TO-TOP BUTTON
========================================================= */

.back-to-top {
position: fixed;
right: 24px;
bottom: 24px;
z-index: 900;

width: 48px;
height: 48px;

display: grid;
place-items: center;

border: 0;
border-radius: 50%;

background: var(--accent);
color: #00131c;

cursor: pointer;
font-size: 1.35rem;
font-weight: 900;

opacity: 0;
visibility: hidden;
transform: translateY(14px);

box-shadow: var(--shadow-small);

transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    background-color var(--transition);

}

.back-to-top.is-visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.back-to-top:hover {
background: var(--accent-hover);
}

/* =========================================================
13. FOOTER
========================================================= */

.site-footer {
padding: 38px 20px;

text-align: center;

background: #080b0f;
border-top: 1px solid var(--border);
color: #aeb8c4;

}

.site-footer p + p {
margin-top: 5px;
}

.site-footer strong {
color: var(--accent);
}

.footer-73 {
margin-top: 13px !important;
color: var(--accent);
font-weight: 800;
}

.footer-revision {
margin-top: 18px !important;
color: var(--text-secondary);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.04em;
opacity: 0.72;
}

/* =========================================================
14. TABLET RESPONSIVE DESIGN
========================================================= */

@media (max-width: 1000px) {

.station-layout {
    grid-template-columns: 1fr;
}


.stats-grid,
.online-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

}

/* =========================================================
15. MOBILE NAVIGATION AND LAYOUT
========================================================= */

@media (max-width: 768px) {

section {
    padding: 72px 20px;
}


.navbar {
    width: min(100% - 24px, var(--page-width));
    gap: 12px;
}


.menu-toggle {
    display: block;
    order: 2;
}


.theme-toggle {
    order: 3;
}


.nav-links {
    position: absolute;
    top: var(--header-height);
    left: 0;

    width: 100%;
    padding: 18px 20px 24px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;

    background: var(--card-background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-small);
}


.nav-links.is-open {
    display: flex;
}


.nav-links a {
    display: block;
    padding: 13px 10px;
    text-align: center;
}


.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.hero {
    min-height: calc(100svh - var(--header-height));
}


.hero-details {
    grid-template-columns: 1fr;
    width: min(100%, 390px);
}


.hero-detail + .hero-detail {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
}


.about-image-wrapper {
    width: min(100%, 420px);
    margin: 0 auto;
}


.station-details-grid {
    grid-template-columns: 1fr;
}


.lightbox {
    padding: 18px;
}


.lightbox-navigation {
    top: auto;
    bottom: 18px;

    width: 54px;
    height: 48px;

    transform: none;
}


.lightbox-previous {
    left: calc(50% - 64px);
}


.lightbox-next {
    right: calc(50% - 64px);
}


.lightbox-content {
    padding-bottom: 65px;
}

}

/* =========================================================
16. SMALL PHONE RESPONSIVE DESIGN
========================================================= */

@media (max-width: 560px) {

.gallery-image-button {
    height: 320px;
}

.hero-buttons {
    flex-direction: column;
    align-items: stretch;
}


.hero-buttons .button {
    width: 100%;
}


.about-details {
    grid-template-columns: 1fr;
}


.stats-grid,
.online-grid {
    grid-template-columns: 1fr;
}


.gallery-grid {
    grid-template-columns: 1fr;
}


.gallery-item {
    width: min(100%, 340px);
    margin: 0 auto;
}


.gallery-image-button {
    height: 320px;
}


.station-card,
.station-summary,
.contact-card {
    padding: 24px;
}


.station-card-header {
    align-items: flex-start;
}


.station-summary-row {
    flex-direction: column;
    gap: 4px;
}


.station-summary-row strong {
    text-align: left;
}


.back-to-top {
    right: 16px;
    bottom: 16px;
}

}

/* =========================================================
17. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

html {
    scroll-behavior: auto;
}


*,
*::before,
*::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

}
/* =========================================
   GALLERY THUMBNAIL SIZE
========================================= */

.gallery-image-button {
    width: 100%;
    height: 220px;
    padding: 0;
    overflow: hidden;
    background-color: #080b0f;
    border: none;
    cursor: zoom-in;
}

.gallery-image-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.gallery-grid {
    width: min(100%, 1400px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-image-button {
        height: 160px;
    }

    .gallery-content {
        padding: 14px;
    }
}
/* Hide gallery cards that do not match the selected filter */
.gallery-item.is-hidden {
    display: none !important;
}

/* =========================================================
   K6ISS HERO IDENTITY PLATE
   ========================================================= */

.hero-content {
    width: min(100% - 32px, 980px);
}

.hero-label {
    margin-bottom: 16px;
    color: #bfefff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-shadow: 0 2px 10px #000;
}

.hero h1 {
    position: relative;
    display: block;
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 22px 42px 25px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(0, 193, 255, 0.18), transparent 20%, transparent 80%, rgba(0, 193, 255, 0.18)),
        rgba(3, 13, 22, 0.86);
    border: 2px solid #28c8ff;
    border-radius: 12px;
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.55),
        0 0 0 6px rgba(0, 184, 255, 0.10),
        inset 0 0 30px rgba(0, 174, 239, 0.12);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(4.6rem, 11vw, 8.4rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    text-shadow:
        0 3px 0 #087ca6,
        0 8px 18px rgba(0, 0, 0, 0.92),
        0 0 24px rgba(42, 203, 255, 0.42);
    clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

.hero h1::before,
.hero h1::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 54px;
    height: 4px;
    background: #5bdcff;
    box-shadow: 0 -12px 0 rgba(91, 220, 255, 0.42), 0 12px 0 rgba(91, 220, 255, 0.42), 0 0 14px #20c7ff;
    transform: translateY(-50%);
}

.hero h1::before { left: 0; }
.hero h1::after { right: 0; }

.hero h2 {
    margin-top: 28px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 750;
    letter-spacing: 0.025em;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 1);
}

.hero-description {
    margin-top: 18px;
    color: #e8f3fa;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 550;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
    .hero-label {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
    }

    .hero h1 {
        padding: 18px 24px 21px;
        border-width: 1px;
        letter-spacing: 0.07em;
        text-indent: 0.07em;
    }

    .hero h1::before,
    .hero h1::after {
        width: 28px;
    }

    .hero h2 {
        margin-top: 22px;
    }
}

/* =========================================================
   K6ISS ELEGANT EMBOSSED HERO
   ========================================================= */

.hero-content {
    width: min(100% - 32px, 980px);
}

/* Amateur Radio Station label */

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;

    color: #dcf3fa;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.hero-label::before,
.hero-label::after {
    content: "";
    width: clamp(55px, 12vw, 165px);
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(54, 196, 239, 0.95)
    );
}

.hero-label::after {
    background: linear-gradient(
        90deg,
        rgba(54, 196, 239, 0.95),
        transparent
    );
}

/* Main K6ISS embossed callsign */

.hero h1 {
    position: relative;
    display: inline-block;

    margin: 0 auto 58px;
    padding: 4px 16px 16px;

    color: #eef7fa;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ffffff 20%,
        #b9ced7 48%,
        #819ca8 54%,
        #e8f4f8 82%,
        #ffffff 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family:
        "Montserrat",
        "Arial Black",
        "Trebuchet MS",
        Arial,
        sans-serif;

    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.055em;
    text-indent: 0.055em;

    -webkit-text-stroke: 2px #29bde9;

    filter:
        drop-shadow(0 4px 0 #087c9f)
        drop-shadow(0 8px 0 #05637f)
        drop-shadow(0 13px 0 #03465d)
        drop-shadow(0 20px 14px rgba(0, 0, 0, 0.85));

    text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.95),
        1px 1px 0 rgba(5, 65, 87, 0.95),
        0 0 15px rgba(41, 189, 233, 0.28);
}

/* Accent line and station information */

.hero h1::after {
    content: "CALIFORNIA  •  GRID DM14";

    position: absolute;
    top: calc(100% + 24px);
    left: 50%;

    width: min(80vw, 400px);
    padding-top: 17px;

    color: #b9e4f1;

    border-top: 2px solid rgba(64, 199, 239, 0.88);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    line-height: 1;
    text-align: center;

    text-indent: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);

    transform: translateX(-50%);

    /* Cancels inherited gradient-text properties */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #b9e4f1;
    -webkit-text-stroke: 0;
    filter: none;
}

/* Subtitle */

.hero h2 {
    margin-top: 16px;

    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.015em;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 5px 16px rgba(0, 0, 0, 0.9);
}

/* Description */

.hero-description {
    margin-top: 18px;

    color: #e7f0f5;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 1.7;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 4px 12px rgba(0, 0, 0, 0.9);
}

/* Mobile adjustments */

@media (max-width: 768px) {
    .hero-label {
        gap: 10px;
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    .hero-label::before,
    .hero-label::after {
        width: 38px;
    }

    .hero h1 {
        margin-bottom: 54px;
        padding-inline: 4px;

        font-size: clamp(4rem, 20vw, 6.5rem);
        letter-spacing: 0.025em;
        text-indent: 0.025em;

        -webkit-text-stroke-width: 1px;

        filter:
            drop-shadow(0 3px 0 #087c9f)
            drop-shadow(0 6px 0 #05637f)
            drop-shadow(0 10px 0 #03465d)
            drop-shadow(0 15px 10px rgba(0, 0, 0, 0.85));
    }

    .hero h1::after {
        top: calc(100% + 20px);

        width: min(82vw, 340px);
        padding-top: 14px;

        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .hero h2 {
        margin-top: 12px;
    }
}

/* =========================================================
   K6ISS FINAL VERIFIED WORDMARK
   This block intentionally resets every earlier hero H1 effect.
   ========================================================= */

.hero-content {
    width: min(100% - 32px, 980px) !important;
}

.hero-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    color: #dcf3fa !important;
    background: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.32em !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
}

.hero-label::before,
.hero-label::after {
    content: "" !important;
    display: block !important;
    width: clamp(55px, 12vw, 165px) !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(54, 196, 239, 0.95)) !important;
    box-shadow: none !important;
}

.hero-label::after {
    background: linear-gradient(90deg, rgba(54, 196, 239, 0.95), transparent) !important;
}

.hero h1 {
    position: relative !important;
    display: block !important;
    width: min(100%, 800px) !important;
    height: clamp(145px, 22vw, 230px) !important;
    margin: 0 auto 58px !important;
    padding: 0 !important;
    overflow: visible !important;
    color: transparent !important;
    background: url("../images/k6iss-wordmark.png") center / contain no-repeat !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    clip-path: none !important;
    filter: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
    text-indent: -9999px !important;
    text-shadow: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: 0 transparent !important;
}

.hero h1::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

.hero h1::after {
    content: "CALIFORNIA  •  GRID DM14" !important;
    position: absolute !important;
    top: calc(100% + 5px) !important;
    left: 50% !important;
    display: block !important;
    width: min(80vw, 400px) !important;
    height: auto !important;
    padding-top: 15px !important;
    color: #b9e4f1 !important;
    background: linear-gradient(90deg, transparent, #4ac7ed 18%, #4ac7ed 82%, transparent) top / 100% 2px no-repeat !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.28em !important;
    line-height: 1 !important;
    text-align: center !important;
    text-indent: 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95) !important;
    transform: translateX(-50%) !important;
    filter: none !important;
    -webkit-text-fill-color: #b9e4f1 !important;
    -webkit-text-stroke: 0 transparent !important;
}

.hero h2 {
    margin-top: 14px !important;
    color: #ffffff !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.015em !important;
    text-shadow: 0 2px 3px #000, 0 5px 16px rgba(0, 0, 0, 0.9) !important;
}

.hero-description {
    margin-top: 18px !important;
    color: #e7f0f5 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
    text-shadow: 0 2px 3px #000, 0 4px 12px rgba(0, 0, 0, 0.9) !important;
}

@media (max-width: 768px) {
    .hero-label {
        gap: 10px !important;
        font-size: 0.68rem !important;
        letter-spacing: 0.18em !important;
    }

    .hero-label::before,
    .hero-label::after {
        width: 36px !important;
    }

    .hero h1 {
        width: min(100%, 620px) !important;
        height: clamp(115px, 31vw, 190px) !important;
        margin-bottom: 52px !important;
    }

    .hero h1::after {
        top: calc(100% + 2px) !important;
        width: min(82vw, 340px) !important;
        padding-top: 13px !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.18em !important;
    }

    .hero h2 {
        margin-top: 10px !important;
    }
}

/* =========================================================
   COMPACT HERO — APPROVED 620PX DESKTOP PROPORTION
   ========================================================= */

@media (min-width: 769px) {
    .hero {
        min-height: 620px !important;
        height: 620px !important;
        padding: 24px 0 !important;
        box-sizing: border-box !important;
    }

    .hero h1 {
        height: 175px !important;
        margin-bottom: 42px !important;
    }

    .hero h1::after {
        top: calc(100% + 2px) !important;
        padding-top: 12px !important;
    }

    .hero h2 {
        margin-top: 8px !important;
    }

    .hero-description {
        margin-top: 14px !important;
        line-height: 1.55 !important;
    }

    .hero-buttons {
        margin-top: 20px !important;
    }

    .hero-details {
        margin-top: 28px !important;
        padding: 16px !important;
    }

    .hero-detail {
        padding: 8px 16px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 58px 0 48px !important;
    }
}

/* =========================================================
   STRONGER EMBOSSED GALLERY CARDS — APPROVED PREVIEW
   ========================================================= */

.gallery-item {
    border-color: rgba(255, 255, 255, 0.78) !important;
    box-shadow:
        inset 2px 2px 0 rgba(255, 255, 255, 0.96),
        inset -2px -2px 0 rgba(73, 86, 99, 0.34),
        0 8px 12px rgba(37, 48, 58, 0.20),
        0 22px 34px rgba(37, 48, 58, 0.32) !important;
}

.gallery-item:hover {
    transform: translateY(-9px) !important;
    box-shadow:
        inset 2px 2px 0 rgba(255, 255, 255, 1),
        inset -3px -3px 0 rgba(73, 86, 99, 0.40),
        0 12px 17px rgba(37, 48, 58, 0.23),
        0 30px 44px rgba(37, 48, 58, 0.38) !important;
}

body:not(.light-mode) .gallery-item {
    border-color: rgba(116, 211, 241, 0.34) !important;
    box-shadow:
        inset 2px 2px 0 rgba(255, 255, 255, 0.16),
        inset -2px -2px 0 rgba(0, 0, 0, 0.58),
        0 8px 12px rgba(0, 0, 0, 0.42),
        0 22px 36px rgba(0, 0, 0, 0.60) !important;
}

body:not(.light-mode) .gallery-item:hover {
    box-shadow:
        inset 2px 2px 0 rgba(255, 255, 255, 0.22),
        inset -3px -3px 0 rgba(0, 0, 0, 0.66),
        0 12px 18px rgba(0, 0, 0, 0.48),
        0 30px 46px rgba(0, 0, 0, 0.68) !important;
}

@media (max-width: 768px) {
    .logo-image {
        height: 54px;
        max-width: 190px;
    }
}

@media (max-width: 390px) {
    .logo-image {
        height: 48px;
        max-width: 170px;
    }
}

/* =========================================================
   CONSOLIDATED PORTFOLIO SECTIONS
   Approved theme-matched redesign
   ========================================================= */

.redesigned-about,
.station-section,
.online-section,
.redesigned-contact {
    color: var(--text-primary);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.station-identity {
    width: min(100%, var(--page-width));
    margin: 0 auto 42px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, var(--card-background), var(--card-background-light));
    border: 1px solid var(--border);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
}

.station-identity h2,
.redesigned-about-content h3,
.equipment-card h3,
.compact-online-card strong,
.redesigned-contact-card h2 {
    color: var(--text-primary);
}

.station-identity-intro,
.redesigned-about-content p,
.compact-online-card small,
.redesigned-contact-card p {
    color: var(--text-secondary);
}

.identity-facts,
.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.identity-facts {
    justify-content: flex-end;
}

.identity-facts span,
.interest-tags span {
    padding: 8px 14px;
    color: var(--accent);
    background: rgba(0, 183, 255, 0.08);
    border: 1px solid rgba(0, 183, 255, 0.28);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.redesigned-about-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
}

.redesigned-about-content {
    padding: 18px 0;
}

.redesigned-about-content h3 {
    margin: 8px 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.redesigned-about-content .interest-tags {
    margin-top: 26px;
}

.station-equipment-grid {
    width: min(100%, var(--page-width));
    margin: 0 auto 54px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.equipment-card {
    min-height: 260px;
    padding: 28px;
    background: var(--card-background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.equipment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 183, 255, 0.55);
    box-shadow: var(--shadow-large);
}

.equipment-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 16px;
    font-size: 1.55rem;
}

.equipment-card h3 {
    margin-bottom: 16px;
}

.equipment-card ul {
    padding-left: 20px;
    color: var(--text-secondary);
}

.equipment-card li + li {
    margin-top: 9px;
}

.compact-online-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.compact-online-card {
    min-height: 116px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    color: var(--text-primary);
}

.compact-online-card:hover {
    color: var(--text-primary);
}

.compact-online-card .online-icon {
    flex: 0 0 auto;
    margin: 0;
    font-size: 1.75rem;
}

.compact-online-card > span:last-child {
    display: grid;
    gap: 4px;
}

.compact-online-card strong,
.compact-online-card small {
    display: block;
}

.redesigned-contact {
    padding-top: 64px;
    padding-bottom: 64px;
}

.redesigned-contact-card {
    width: min(100%, var(--page-width));
    max-width: none;
    margin: 0 auto;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.redesigned-contact-card .section-label {
    margin-bottom: 6px;
}

.redesigned-contact-card h2 {
    margin-bottom: 8px;
}

.redesigned-contact-card .button {
    flex: 0 0 auto;
    margin: 0;
}

body.light-mode .identity-facts span,
body.light-mode .interest-tags span,
body.light-mode .equipment-icon {
    background: rgba(0, 126, 174, 0.08);
    border-color: rgba(0, 126, 174, 0.25);
}

@media (max-width: 900px) {
    .station-identity,
    .redesigned-contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .identity-facts {
        justify-content: flex-start;
    }

    .station-equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-card {
        min-height: 0;
    }

    .compact-online-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .station-identity {
        padding: 24px;
    }

    .redesigned-about-grid {
        grid-template-columns: 1fr;
    }

    .redesigned-about-content {
        padding: 0;
    }
}

@media (max-width: 560px) {
    .compact-online-grid {
        grid-template-columns: 1fr;
    }

    .redesigned-contact-card {
        padding: 26px;
    }

    .redesigned-contact-card .button {
        width: 100%;
    }
}
