/*
Theme Name: Alicia Shaffer Foundation
Theme URI: https://jasonshaffer.net
Author: Jason Shaffer Group
Author URI: https://jasonshaffer.net
Description: Black & gold canvas theme for The Alicia Shaffer Foundation — brain tumor awareness in loving memory of Alicia Shaffer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jsg-custom-theme
*/


/* =========================================================
   1. DESIGN TOKENS — Alicia's black & gold.
   Pasted pages reference these variables.
   ========================================================= */
:root {
	/* ASF palette */
	--asf-black: #0a0a0c;          /* page background */
	--asf-panel: #101014;          /* alternate section background */
	--asf-card: #16161c;           /* cards / panels */
	--asf-gold: #d4af37;           /* primary gold */
	--asf-gold-deep: #a8871f;      /* pressed / borders */
	--asf-gold-soft: #e9d189;      /* hover / soft accents */
	--asf-champagne: #f3e7c3;      /* pale gold text on black */
	--asf-ink: #f2ede1;            /* warm ivory body text */
	--asf-muted: #b3ab99;          /* secondary text */
	--asf-line: rgba(212, 175, 55, 0.28);   /* gold hairlines */
	--asf-line-dim: rgba(212, 175, 55, 0.14);

	/* Theme chrome variables (consumed by header/footer/base) */
	--jsg-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--jsg-font-heading: "Cormorant Garamond", "Playfair Display", Georgia, serif;

	--jsg-color-bg: var(--asf-black);
	--jsg-color-text: var(--asf-ink);
	--jsg-color-muted: var(--asf-muted);
	--jsg-color-accent: var(--asf-gold);
	--jsg-color-accent-hover: var(--asf-gold-soft);

	--jsg-header-bg: #0a0a0c;
	--jsg-header-text: var(--asf-ink);
	--jsg-footer-bg: #070708;
	--jsg-footer-text: var(--asf-muted);

	--jsg-container: 1160px;
}

::selection {
	background: var(--asf-gold);
	color: #0a0a0c;
}

/* =========================================================
   2. BASE
   ========================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--jsg-font-body);
	color: var(--jsg-color-text);
	background: var(--jsg-color-bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--jsg-color-accent);
}

a:hover {
	color: var(--jsg-color-accent-hover);
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--asf-gold);
	outline-offset: 3px;
	border-radius: 2px;
}

.jsg-container {
	max-width: var(--jsg-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.jsg-main {
	min-height: 50vh;
}

/* Accessibility helpers */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 20px;
	background: var(--asf-gold);
	color: #0a0a0c;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

/* =========================================================
   3. HEADER + NAV — black with a gold hairline
   ========================================================= */
.jsg-header {
	background: var(--jsg-header-bg);
	border-bottom: 1px solid var(--asf-line-dim);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
	position: relative;
	z-index: 100;
}

.jsg-header::before {
	/* thin gold thread across the very top of the site */
	content: "";
	display: block;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--asf-gold) 18%, var(--asf-gold-soft) 50%, var(--asf-gold) 82%, transparent);
	opacity: 0.85;
}

.jsg-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.jsg-site-title {
	font-family: var(--jsg-font-heading);
	font-size: 1.42rem;
	font-weight: 600;
	letter-spacing: 0.045em;
	color: var(--asf-champagne);
	text-decoration: none;
	line-height: 1.2;
}

.jsg-site-title:hover {
	color: var(--asf-gold-soft);
}

.custom-logo {
	max-height: 52px;
	width: auto;
	display: block;
}

.jsg-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jsg-menu a {
	display: block;
	padding: 10px 13px;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--jsg-header-text);
	text-decoration: none;
	border-radius: 6px;
	transition: color 0.15s ease, background 0.15s ease;
}

.jsg-menu a:hover {
	color: var(--asf-gold-soft);
	background: rgba(212, 175, 55, 0.08);
}

.jsg-menu .current-menu-item > a,
.jsg-menu .current_page_item > a {
	color: var(--asf-gold);
	background: none;
	box-shadow: inset 0 -2px 0 var(--asf-gold);
	border-radius: 6px 6px 0 0;
}

/* Dropdowns (desktop) */
.jsg-menu li {
	position: relative;
}

.jsg-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	display: none;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 8px;
	background: var(--asf-card);
	border: 1px solid var(--asf-line-dim);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.jsg-menu li:hover > .sub-menu,
.jsg-menu li:focus-within > .sub-menu {
	display: flex;
}

/* Mobile toggle */
.jsg-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	background: none;
	border: 0;
	cursor: pointer;
}

.jsg-nav-toggle-bar {
	width: 22px;
	height: 2px;
	background: var(--asf-gold);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 899px) {
	.jsg-nav-toggle {
		display: flex;
	}

	.jsg-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #0d0d10;
		border-bottom: 1px solid var(--asf-line-dim);
		box-shadow: 0 24px 40px rgba(0, 0, 0, 0.6);
		padding: 12px 24px 20px;
	}

	body.jsg-nav-open .jsg-nav {
		display: block;
	}

	body.jsg-nav-open .jsg-nav-toggle-bar:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

	body.jsg-nav-open .jsg-nav-toggle-bar:nth-child(3) {
		opacity: 0;
	}

	body.jsg-nav-open .jsg-nav-toggle-bar:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.jsg-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.jsg-menu .current-menu-item > a,
	.jsg-menu .current_page_item > a {
		box-shadow: inset 3px 0 0 var(--asf-gold);
		border-radius: 0 6px 6px 0;
	}

	.jsg-menu .sub-menu {
		position: static;
		display: flex;
		border: 0;
		box-shadow: none;
		padding: 0 0 0 16px;
		background: none;
	}
}

/* =========================================================
   4. FOOTER — tribute to Alicia
   ========================================================= */
.jsg-footer {
	background: var(--jsg-footer-bg);
	color: var(--jsg-footer-text);
	border-top: 1px solid var(--asf-line-dim);
	margin-top: 0;
}

.jsg-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-top: 52px;
	padding-bottom: 44px;
	text-align: center;
}

.asf-tribute {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.asf-tribute-mark {
	color: var(--asf-gold);
	font-size: 0.9rem;
	letter-spacing: 0.6em;
	padding-left: 0.6em; /* visually center the spaced diamonds */
}

.asf-tribute-line {
	margin: 0;
	font-family: var(--jsg-font-heading);
	font-size: 1.5rem;
	font-weight: 500;
	font-style: italic;
	color: var(--asf-champagne);
	letter-spacing: 0.02em;
}

.asf-tribute-line em {
	font-style: italic;
	color: var(--asf-gold-soft);
}

.asf-tribute-dates {
	margin: 0;
	font-size: 0.82rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--asf-muted);
}

.jsg-footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jsg-footer-menu a {
	color: var(--jsg-footer-text);
	text-decoration: none;
	font-size: 0.92rem;
}

.jsg-footer-menu a:hover {
	color: var(--asf-gold-soft);
}

.jsg-copyright {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.75;
}

.asf-footer-note {
	margin: 0;
	max-width: 640px;
	font-size: 0.78rem;
	line-height: 1.6;
	color: var(--asf-muted);
	opacity: 0.8;
}

/* =========================================================
   5. REGULAR EDITOR PAGES / POSTS (fallback rendering)
   ========================================================= */
.jsg-page,
.jsg-archive {
	padding-top: 56px;
	padding-bottom: 72px;
}

.jsg-page-title {
	font-family: var(--jsg-font-heading);
	font-size: 2.6rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin: 0 0 8px;
	color: var(--asf-champagne);
}

.jsg-post-meta {
	color: var(--jsg-color-muted);
	margin: 0 0 24px;
}

.jsg-entry-content {
	font-size: 1.05rem;
	max-width: 760px;
}

.jsg-entry-content h2,
.jsg-entry-content h3 {
	font-family: var(--jsg-font-heading);
	color: var(--asf-champagne);
	margin-top: 2em;
}

.jsg-entry-content .alignwide {
	max-width: var(--jsg-container);
}

.jsg-entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.jsg-archive-item {
	padding: 24px 0;
	border-bottom: 1px solid var(--asf-line-dim);
}

.jsg-archive-title {
	margin: 0 0 6px;
}

.jsg-archive-title a {
	color: var(--jsg-color-text);
	text-decoration: none;
}

.jsg-archive-title a:hover {
	color: var(--asf-gold);
}

/* =========================================================
   6. ASF DESIGN SYSTEM — shared by all pasted pages.
   Sections, type, buttons, cards, frames, flourishes.
   ========================================================= */

/* ---- layout ---- */
.asf-section {
	padding: 88px 24px;
}

.asf-section--tight {
	padding: 64px 24px;
}

.asf-section--panel {
	background: var(--asf-panel);
	border-top: 1px solid var(--asf-line-dim);
	border-bottom: 1px solid var(--asf-line-dim);
}

.asf-wrap {
	max-width: var(--jsg-container);
	margin: 0 auto;
}

.asf-wrap--narrow {
	max-width: 820px;
	margin: 0 auto;
}

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

/* ---- typography ---- */
.asf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--asf-gold);
	margin: 0 0 20px;
}

.asf-eyebrow::before,
.asf-eyebrow::after {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--asf-line);
}

.asf-eyebrow--left::after {
	display: none;
}

.asf-display {
	font-family: var(--jsg-font-heading);
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: 0.005em;
	color: var(--asf-champagne);
	margin: 0 0 18px;
}

.asf-display em,
.asf-h2 em {
	font-style: italic;
	color: var(--asf-gold);
}

.asf-h2 {
	font-family: var(--jsg-font-heading);
	font-size: clamp(1.9rem, 3.6vw, 2.7rem);
	font-weight: 600;
	line-height: 1.12;
	color: var(--asf-champagne);
	margin: 0 0 16px;
}

.asf-h3 {
	font-family: var(--jsg-font-heading);
	font-size: 1.45rem;
	font-weight: 600;
	color: var(--asf-champagne);
	margin: 0 0 10px;
}

.asf-lead {
	font-size: clamp(1.05rem, 1.6vw, 1.22rem);
	line-height: 1.7;
	color: var(--asf-ink);
	max-width: 640px;
	margin: 0 0 14px;
}

.asf-body {
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--asf-ink);
	margin: 0 0 16px;
}

.asf-muted {
	color: var(--asf-muted);
}

.asf-center .asf-lead,
.asf-center .asf-body {
	margin-left: auto;
	margin-right: auto;
}

/* ---- gold flourish divider:  ───── ✦ ───── ---- */
.asf-flourish {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 26px auto;
	border: 0;
	width: min(360px, 70%);
}

.asf-flourish::before,
.asf-flourish::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--asf-line));
}

.asf-flourish::after {
	background: linear-gradient(90deg, var(--asf-line), transparent);
}

.asf-flourish-gem {
	color: var(--asf-gold);
	font-size: 0.85rem;
	line-height: 1;
}

/* ---- buttons ---- */
.asf-btn,
.asf-btn-ghost {
	display: inline-block;
	padding: 15px 30px;
	font-family: var(--jsg-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.asf-btn {
	background: linear-gradient(180deg, var(--asf-gold-soft), var(--asf-gold));
	color: #16130a;
	border: 1px solid var(--asf-gold-deep);
	box-shadow: 0 6px 22px rgba(212, 175, 55, 0.22);
}

.asf-btn:hover {
	background: linear-gradient(180deg, #f2e2a8, var(--asf-gold-soft));
	color: #16130a;
	transform: translateY(-1px);
}

.asf-btn-ghost {
	background: transparent;
	color: var(--asf-gold);
	border: 1px solid var(--asf-gold-deep);
}

.asf-btn-ghost:hover {
	background: rgba(212, 175, 55, 0.1);
	color: var(--asf-gold-soft);
}

.asf-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.asf-center .asf-btn-row {
	justify-content: center;
}

/* ---- cards ---- */
.asf-card {
	background: var(--asf-card);
	border: 1px solid var(--asf-line-dim);
	border-radius: 10px;
	padding: 30px 28px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.asf-card:hover {
	border-color: var(--asf-line);
}

.asf-card .asf-h3 {
	margin-top: 2px;
}

.asf-grid-2,
.asf-grid-3,
.asf-grid-4 {
	display: grid;
	gap: 22px;
	margin: 44px 0 0;
	padding: 0;
	list-style: none;
}

.asf-grid-2 { grid-template-columns: repeat(2, 1fr); }
.asf-grid-3 { grid-template-columns: repeat(3, 1fr); }
.asf-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
	.asf-grid-3, .asf-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.asf-grid-2, .asf-grid-3, .asf-grid-4 { grid-template-columns: 1fr; }
}

/* ---- framed photograph (double gold frame, like a kept portrait) ---- */
.asf-frame {
	position: relative;
	display: block;
	padding: 10px;
	background: #0d0d10;
	border: 1px solid var(--asf-gold-deep);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.asf-frame::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid var(--asf-line);
	pointer-events: none;
}

.asf-frame img {
	display: block;
	width: 100%;
	height: auto;
}

.asf-figcap {
	margin: 14px 4px 0;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	color: var(--asf-muted);
	font-style: italic;
	text-align: center;
}

/* ---- large pull quote ---- */
.asf-quote {
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	padding: 8px 24px;
	font-family: var(--jsg-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 500;
	font-style: italic;
	line-height: 1.4;
	color: var(--asf-champagne);
	text-align: center;
}

.asf-quote::before,
.asf-quote::after {
	color: var(--asf-gold);
	font-size: 2.6rem;
	font-style: normal;
	line-height: 0;
	vertical-align: -0.35em;
}

.asf-quote::before { content: "“ "; }
.asf-quote::after { content: " ”"; }

.asf-quote-attr {
	display: block;
	margin-top: 22px;
	font-family: var(--jsg-font-body);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--asf-gold);
}

/* ---- gold band (inverted section) ---- */
.asf-band {
	background: linear-gradient(160deg, #caa42e 0%, var(--asf-gold) 45%, #b8922a 100%);
	color: #16130a;
}

.asf-band .asf-h2,
.asf-band .asf-display {
	color: #141005;
}

.asf-band .asf-body,
.asf-band .asf-lead {
	color: #2a2410;
}

.asf-band .asf-eyebrow {
	color: #453a12;
}

.asf-band .asf-eyebrow::before,
.asf-band .asf-eyebrow::after {
	background: rgba(20, 16, 5, 0.35);
}

.asf-band .asf-btn {
	background: #131316;
	color: var(--asf-gold-soft);
	border-color: #131316;
	box-shadow: 0 10px 26px rgba(19, 16, 5, 0.35);
}

.asf-band .asf-btn:hover {
	background: #000;
	color: #f2e2a8;
}

/* ---- stats ---- */
.asf-stat {
	text-align: center;
	padding: 26px 18px;
}

.asf-stat-num {
	display: block;
	font-family: var(--jsg-font-heading);
	font-size: clamp(2.4rem, 4.5vw, 3.4rem);
	font-weight: 600;
	color: var(--asf-gold);
	line-height: 1;
	margin-bottom: 10px;
}

.asf-stat-label {
	display: block;
	font-size: 0.92rem;
	color: var(--asf-muted);
	max-width: 240px;
	margin: 0 auto;
	line-height: 1.5;
}

/* ---- warning-sign cards (Know the Signs) ---- */
.asf-signcard {
	position: relative;
	background: var(--asf-card);
	border: 1px solid var(--asf-line-dim);
	border-left: 3px solid var(--asf-gold);
	border-radius: 8px;
	padding: 26px 24px 22px;
}

.asf-signcard .asf-h3 {
	font-size: 1.35rem;
	margin-bottom: 8px;
}

.asf-signcard p {
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.65;
	color: var(--asf-ink);
}

.asf-signcard .asf-sign-alicia {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed var(--asf-line-dim);
	font-size: 0.88rem;
	font-style: italic;
	color: var(--asf-gold-soft);
}

/* ---- timeline (Alicia's eight weeks) ---- */
.asf-timeline {
	list-style: none;
	margin: 44px 0 0;
	padding: 0 0 0 30px;
	position: relative;
	max-width: 720px;
}

.asf-timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: linear-gradient(180deg, var(--asf-line), var(--asf-gold-deep));
}

.asf-timeline li {
	position: relative;
	padding: 0 0 34px;
}

.asf-timeline li:last-child {
	padding-bottom: 0;
}

.asf-timeline li::before {
	content: "";
	position: absolute;
	left: -28px;
	top: 7px;
	width: 11px;
	height: 11px;
	background: var(--asf-black);
	border: 2px solid var(--asf-gold);
	transform: rotate(45deg);
}

.asf-timeline-when {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--asf-gold);
	margin-bottom: 6px;
}

.asf-timeline p {
	margin: 0;
	color: var(--asf-ink);
	line-height: 1.7;
}

/* ---- note / disclaimer ---- */
.asf-note {
	max-width: 820px;
	margin: 40px auto 0;
	padding: 18px 22px;
	background: rgba(212, 175, 55, 0.06);
	border: 1px solid var(--asf-line-dim);
	border-radius: 8px;
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--asf-muted);
	text-align: center;
}

/* ---- two-column feature (text + framed photo) ---- */
.asf-duo {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.asf-duo--flip {
	grid-template-columns: 0.95fr 1.05fr;
}

@media (max-width: 899px) {
	.asf-duo,
	.asf-duo--flip {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ---- photo strip gallery ---- */
.asf-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 44px 0 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 700px) {
	.asf-strip { grid-template-columns: 1fr; }
}

.asf-strip .asf-frame {
	padding: 7px;
}

/* ---- hero scaffolding ---- */
.asf-hero {
	position: relative;
	overflow: hidden;
	padding: 110px 24px 120px;
	background: var(--asf-black);
}

.asf-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	opacity: 0.38;
	filter: saturate(0.92);
}

.asf-hero-veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 55% at 50% 38%, rgba(212, 175, 55, 0.16), transparent 70%),
		linear-gradient(180deg, rgba(10, 10, 12, 0.82) 0%, rgba(10, 10, 12, 0.55) 45%, var(--asf-black) 100%);
}

.asf-hero-inner {
	position: relative;
	max-width: var(--jsg-container);
	margin: 0 auto;
}

/* gentle rise on load */
@keyframes asf-rise {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

.asf-rise {
	animation: asf-rise 0.9s ease both;
}

.asf-rise-2 { animation-delay: 0.15s; }
.asf-rise-3 { animation-delay: 0.3s; }
