/* SCCCUL theme stylesheet. Brand colors from the current logo / site CSS:
   teal #168c86 (primary), rust #d65938 (accent/hover). */

:root {
	--scc-teal: #168c86;
	--scc-teal-deep: #0b524e;
	--scc-rust: #d65938;
	--scc-ink: #1c1a17;
	--scc-paper: #f6f7f6;
	--scc-mist: #eaf0ef;
	--scc-radius: 10px;
	--scc-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	--scc-font-display: "Archivo", "Arial Narrow", sans-serif;
	--scc-font-body: "Public Sans", system-ui, sans-serif;
	--scc-font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--scc-paper);
	color: var(--scc-ink);
	font-family: var(--scc-font-body);
}

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

.scc-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Utility bar */
.scc-utility { background: var(--scc-ink); color: rgba(255,255,255,.75); font-size: .78rem; }
.scc-utility .scc-container { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; }
.scc-utility__menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.scc-utility__menu a { text-decoration: none; font-weight: 600; }
.scc-utility__menu a:hover { color: #fff; }
.scc-utility__social { display: flex; gap: 12px; }
.scc-utility__social a { text-decoration: none; color: inherit; }

/* Header */
.scc-header { position: sticky; top: 0; z-index: 999; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.12); }
.scc-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.scc-header__brand img { height: 40px; width: auto; }
.scc-header__brand a { font-family: var(--scc-font-display); font-weight: 800; text-decoration: none; color: var(--scc-ink); }
.scc-nav { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; font-weight: 700; font-size: .92rem; }
.scc-nav a { text-decoration: none; color: var(--scc-ink); }
.scc-nav a:hover { color: var(--scc-teal); }
.scc-nav .sub-menu { list-style: none; margin: 0; padding: 0; }

/* Buttons */
.scc-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 999px; font-family: var(--scc-font-display); font-weight: 800; font-size: .92rem; letter-spacing: .02em; text-decoration: none; transition: transform .15s ease, background-color .15s ease; }
.scc-btn--primary { background: var(--scc-teal); color: #fff; }
.scc-btn--primary:hover { background: var(--scc-rust); transform: translateY(-2px); }
.scc-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.8); }
.scc-btn--outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

/* Hero */
.scc-hero {
	position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center;
	background-size: cover; background-position: center;
	background-color: var(--scc-ink);
	background-image: linear-gradient(160deg, #0b524e 0%, #1c1a17 70%);
}
.scc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,20,20,.35) 0%, rgba(15,20,20,.65) 100%); }
.scc-hero__content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 88px 24px; text-align: center; color: #fff; }
.scc-hero__eyebrow { font-family: var(--scc-font-mono); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 600; color: #bfe9e6; margin: 0 0 18px; }
.scc-hero__title { font-family: var(--scc-font-display); font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.18; font-weight: 800; margin: 0 0 18px; text-wrap: balance; }
.scc-hero__subtitle { font-size: 1.12rem; line-height: 1.6; margin: 0 0 34px; color: rgba(255,255,255,.9); }
.scc-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Ticker */
.scc-ticker { display: flex; align-items: stretch; background: var(--scc-ink); color: #fff; font-size: .95rem; }
.scc-ticker__label { flex: 0 0 auto; display: flex; align-items: center; padding: 12px 20px; background: var(--scc-teal); font-family: var(--scc-font-mono); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; }
.scc-ticker__viewport { position: relative; flex: 1 1 auto; overflow: hidden; padding: 12px 20px; min-height: 1.4em; font-family: var(--scc-font-mono); font-size: .88rem; }
.scc-ticker__list { list-style: none; margin: 0; padding: 0; }
.scc-ticker__list li { position: absolute; inset: 0; padding: 12px 20px; opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scc-ticker__list li.is-active { position: relative; opacity: 1; transform: translateY(0); }
.scc-ticker__list:not(.is-js) li { position: static; opacity: 1; transform: none; white-space: normal; }

/* Section titles */
.scc-section-title { font-family: var(--scc-font-display); font-size: 1.6rem; font-weight: 800; color: var(--scc-ink); margin: 0 0 28px; text-align: center; text-wrap: balance; }
.scc-section-title--light { color: #fff; }
.scc-section-header { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.scc-section-header .scc-section-title { margin-bottom: 0; text-align: left; }
.scc-link-more { font-family: var(--scc-font-display); color: var(--scc-teal); font-weight: 700; text-decoration: none; font-size: .92rem; }
.scc-link-more:hover { color: var(--scc-rust); }
.scc-empty-notice { text-align: center; color: #6b6b6b; }

/* Quick links */
.scc-quicklinks { background: var(--scc-mist); padding: 64px 0; }
.scc-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scc-card { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; background: #fff; border-radius: var(--scc-radius); padding: 28px 24px; text-decoration: none; color: var(--scc-ink); box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.scc-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--scc-shadow); }
.scc-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(22,140,134,.12); color: var(--scc-teal); font-size: 20px !important; }
.scc-card__title { font-weight: 700; line-height: 1.4; }

/* News */
.scc-news { padding: 64px 0; }
.scc-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.scc-news-card { display: block; text-decoration: none; color: var(--scc-ink); border-radius: var(--scc-radius); overflow: hidden; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.scc-news-card:hover { transform: translateY(-4px); box-shadow: var(--scc-shadow); }
.scc-news-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--scc-mist); }
.scc-news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.scc-news-card:hover .scc-news-card__media img { transform: scale(1.06); }
.scc-news-card__media--placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--scc-teal), var(--scc-teal-deep)); }
.scc-news-card__body { padding: 18px 20px 22px; }
.scc-news-card__date { display: block; font-family: var(--scc-font-mono); font-size: .76rem; color: var(--scc-teal-deep); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.scc-news-card__title { font-size: 1.05rem; line-height: 1.4; margin: 0; }

/* Contact */
.scc-contact { background: var(--scc-ink); color: rgba(255,255,255,.9); padding: 64px 0; }
.scc-contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.scc-contact__block p { line-height: 1.7; }
.scc-contact__block a { color: #bfe9e6; }
.scc-contact__block--card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--scc-radius); padding: 28px; }
.scc-contact__block--card h3 { font-family: var(--scc-font-display); margin-top: 0; color: #fff; }

/* Footer */
.scc-footer { background: #0f1211; color: rgba(255,255,255,.7); padding: 48px 0 24px; font-size: .92rem; }
.scc-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.scc-footer h4 { font-family: var(--scc-font-display); color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.scc-footer__menu, .scc-footer__contact { list-style: none; margin: 0; padding: 0; }
.scc-footer__menu li, .scc-footer__contact li { margin-bottom: 8px; }
.scc-footer a { text-decoration: none; }
.scc-footer a:hover { color: #fff; }
.scc-footer__bottom { max-width: 1180px; margin: 40px auto 0; padding: 20px 24px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }

/* Responsive */
@media (max-width: 900px) {
	.scc-card-grid, .scc-news-grid { grid-template-columns: repeat(2, 1fr); }
	.scc-contact__grid { grid-template-columns: 1fr; }
	.scc-footer__grid { grid-template-columns: 1fr 1fr; }
	.scc-nav { display: none; }
}
@media (max-width: 560px) {
	.scc-card-grid, .scc-news-grid { grid-template-columns: 1fr; }
	.scc-hero__actions { flex-direction: column; }
	.scc-ticker { flex-direction: column; }
	.scc-footer__grid { grid-template-columns: 1fr; }
}
