:root {
  --bg: #08090d;
  --bg-soft: #12151c;
  --panel: #171c24;
  --steel: #afb4bc;
  --text: #e8ebf0;
  --muted: #b2b7c0;
  --blood: #9f1d21;
  --blood-bright: #cc2a2f;
  --edge: #2d3440;
  --glow: rgba(204, 42, 47, 0.26);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 12% -10%, #2a2e3a 0%, transparent 58%),
    radial-gradient(900px 500px at 95% 8%, #2d0d10 0%, transparent 64%),
    linear-gradient(150deg, #07080c 0%, #0e1218 35%, #07080c 100%);
  min-height: 100vh;
  position: relative;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 2px 2px;
  opacity: 0.08;
}

a {
  color: var(--steel);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.site-header,
main,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1rem 0 0.7rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--edge);
}

.brand-wrap {
  display: inline-flex;
  width: 280px;
  max-width: 52vw;
}

.wordmark {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.09));
}

.main-nav {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-right {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.main-nav a {
  border: 1px solid var(--edge);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 18, 24, 0.7);
  font-weight: 600;
}

.main-nav a:hover {
  border-color: var(--blood);
  box-shadow: 0 0 18px var(--glow);
}

main {
  padding: 1.4rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 1.2rem;
  background: linear-gradient(170deg, rgba(19, 24, 33, 0.95), rgba(14, 16, 22, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 22px 55px rgba(0, 0, 0, 0.38);
}

.hero-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #222834;
  position: relative;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.5));
}

.hero-skull {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.hero-copy h1,
.page-header h1,
.single-post h1,
h2,
h3 {
  font-family: 'IM Fell English SC', serif;
  letter-spacing: 0.4px;
  color: #d6484d;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  margin: 0.2rem 0 0.5rem;
  line-height: 1.12;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: #c8ccd3;
  opacity: 0.88;
  margin: 0;
}

.btn-primary {
  margin-top: 0.7rem;
  display: inline-block;
  border: 1px solid var(--blood);
  padding: 0.58rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--blood-bright), #7f1419);
}

.btn-primary:hover {
  box-shadow: 0 0 24px var(--glow);
}

.featured-card,
.post-card,
.list-card,
.single-post,
.admin-card,
.stat-box {
  background: linear-gradient(180deg, rgba(25, 30, 40, 0.8), rgba(15, 17, 24, 0.88));
  border: 1px solid var(--edge);
  border-radius: 16px;
}

.featured-card {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
}

.featured-card h2 {
  margin: 0.4rem 0;
}

.posts-feed {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.2rem;
}

.post-feed-card {
  border: 1px solid #313a48;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(24, 29, 39, 0.92), rgba(13, 16, 22, 0.94));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.post-feed-image-link {
  display: block;
  position: relative;
}

.post-feed-image {
  width: 100%;
  aspect-ratio: 19 / 4.5;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #2a3140;
  filter: grayscale(0.16) contrast(1.05);
}

.post-feed-image-link::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 65%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(7, 8, 12, 0.9) 88%);
}

.post-feed-type-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  border: 1px solid #cc4047;
  border-radius: 999px;
  background: rgba(159, 29, 33, 0.94);
  color: #fff2f2;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.6rem;
}

.post-feed-title-overlay {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: 'IM Fell English SC', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  line-height: 1.15;
  color: #f6f7fa;
}

.post-feed-body {
  padding: 0.9rem 1rem 1.05rem;
  color: #d8dde6;
}

.posts-grid,
.list-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.post-card {
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: grayscale(0.33) contrast(1.1);
}

.featured-grid {
  --featured-cols: 2;
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(var(--featured-cols), minmax(0, 1fr));
}

.featured-tile-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.featured-tile-link:focus-visible {
  outline: 2px solid #d6484d;
  outline-offset: 4px;
  border-radius: 10px;
}

.featured-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.featured-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.08);
}

.featured-tile-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.7rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(7, 8, 12, 0.92) 65%);
}

.featured-tile.is-featured-link {
  border-color: #d6b04a;
  box-shadow: 0 0 0 1px rgba(214, 176, 74, 0.45), 0 0 22px rgba(214, 176, 74, 0.22);
}

.featured-tile.is-featured-link .featured-tile-body {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(34, 26, 8, 0.95) 65%);
}

.featured-link-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 176, 74, 0.95);
  color: #161007;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 12px rgba(214, 176, 74, 0.45);
  z-index: 2;
}

.tile-kind-badge {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7a171c;
  background: rgba(127, 20, 25, 0.95);
  color: #ffe6e7;
  box-shadow: 0 0 12px rgba(127, 20, 25, 0.4);
  z-index: 2;
}

.tile-kind-badge svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: #ffe6e7;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.band-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #2b3342;
  margin-bottom: 0.6rem;
}

.post-body {
  padding: 0.9rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.2rem 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-row span {
  border: 1px solid #343c4a;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
}

.single-post {
  padding: 1.1rem;
}

.single-cover,
.about-skull {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #29303d;
}

.post-content {
  margin-top: 1rem;
  line-height: 1.62;
  font-size: 1.08rem;
}

.event-intro-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.event-intro-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #2b3342;
}

.event-intro-text {
  margin-top: 0;
}

.post-content h3 {
  margin-top: 1.1rem;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
}

.report-main,
.report-sidebar {
  min-width: 0;
}

.report-sidebar {
  padding-top: 6.9rem;
}

.hero-gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-gallery-item {
  margin: 0;
}

.hero-gallery-item.is-large {
  grid-column: 1 / -1;
}

.hero-gallery img,
.band-gallery img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #2b3342;
  object-fit: cover;
}

.hero-gallery img {
  aspect-ratio: 16 / 4.5;
}

.hero-gallery figcaption,
.band-gallery figcaption {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.flow-text {
  line-height: 1.72;
  font-size: 1.08rem;
  word-wrap: break-word;
}

.band-report-section {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #262e3b;
}

.band-gallery {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.6rem;
}

.band-gallery figure {
  margin: 0;
}

.sticky-card {
  position: sticky;
  top: 1rem;
  margin-bottom: 0.8rem;
}

.sidebar-lineup {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.sidebar-lineup li {
  display: grid;
  gap: 0.2rem;
}

.anchor-link {
  font-size: 0.84rem;
}

.lineup-links a,
.lineup-links span {
  margin-right: 0.25rem;
}

.event-list-card-layout {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.event-list-image-link {
  display: inline-block;
}

.event-list-image-tile {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  border: 1px solid #2b3342;
  object-fit: cover;
  display: block;
}

.event-list-card {
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-list-card:hover {
  background: linear-gradient(180deg, rgba(36, 42, 55, 0.94), rgba(20, 24, 32, 0.96));
  border-color: #3a4356;
  box-shadow: 0 0 0 1px rgba(214, 72, 77, 0.14), 0 14px 28px rgba(0, 0, 0, 0.3);
}

.band-list-card {
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.band-list-card:hover {
  background: linear-gradient(180deg, rgba(36, 42, 55, 0.94), rgba(20, 24, 32, 0.96));
  border-color: #3a4356;
  box-shadow: 0 0 0 1px rgba(214, 72, 77, 0.14), 0 14px 28px rgba(0, 0, 0, 0.3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.band-header-image {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2b3342;
  margin-bottom: 0.8rem;
}

.band-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.band-post-links {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.2rem;
}

.page-header {
  max-width: 760px;
}

.list-card,
.admin-card {
  padding: 1rem;
}

.admin-subnav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-subnav a {
  border: 1px solid #344055;
  background: rgba(14, 18, 24, 0.84);
  border-radius: 999px;
  padding: 0.44rem 0.84rem;
  font-weight: 700;
}

.admin-subnav a.is-active {
  border-color: var(--blood);
  color: #fff;
  box-shadow: 0 0 18px var(--glow);
}

.admin-subnav-logout {
  margin: 0;
}

.admin-subnav-logout button {
  border: 1px solid #344055;
  background: rgba(14, 18, 24, 0.84);
  border-radius: 999px;
  padding: 0.44rem 0.84rem;
  font-weight: 700;
  color: var(--steel);
}

.admin-subnav-logout button:hover {
  border-color: var(--blood);
  color: #fff;
  box-shadow: 0 0 18px var(--glow);
}

.crud-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.editor-panel > .crud-header-row {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: -1rem -1rem 0;
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(180deg, rgba(17, 22, 30, 0.99), rgba(17, 22, 30, 0.94));
  border-bottom: 1px solid #31394b;
}

.drawer-header-actions {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.crud-header-row h2 {
  margin: 0;
}

.editor-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(60vw, 100vw);
  height: 100vh;
  margin: 0;
  border-radius: 0;
  border-color: #3a4357;
  box-shadow: -12px 0 34px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  z-index: 100;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(17, 22, 30, 0.98), rgba(12, 15, 21, 0.98));
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  right: 60vw;
  width: 40vw;
  background: rgba(28, 30, 35, 0.42);
  backdrop-filter: blur(5px) grayscale(0.8);
  -webkit-backdrop-filter: blur(5px) grayscale(0.8);
  z-index: 95;
}

.drawer-overlay.is-active {
  display: block;
}

.admin-stats-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.stat-box {
  padding: 0.9rem;
}

.stat-box h3 {
  margin: 0;
  font-size: 1rem;
}

.stat-box p {
  margin: 0.5rem 0 0;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 700;
}

.admin-form {
  display: grid;
  gap: 0.7rem;
}

.editor-panel .admin-form {
  padding-top: 1.2rem;
}

.media-block {
  padding: 0.85rem;
  border: 1px solid #2d3442;
  border-radius: 12px;
  background: rgba(10, 13, 18, 0.55);
}

.media-list,
.section-gallery {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.media-item {
  border: 1px solid #2b3342;
  border-radius: 10px;
  padding: 0.5rem;
  background: rgba(13, 17, 24, 0.9);
  display: grid;
  gap: 0.35rem;
}

.media-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #2e3645;
}

.section-editor-item {
  border: 1px solid #2f3747;
  border-radius: 12px;
  padding: 0.7rem;
  margin-top: 0.65rem;
  display: grid;
  gap: 0.6rem;
  background: rgba(11, 14, 20, 0.72);
}

.sortable-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.sortable-item {
  border: 1px solid #334054;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  background: rgba(20, 25, 34, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.sortable-item-inner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.drag-handle {
  cursor: grab;
  border: 1px solid #46536c;
  background: #252d3a;
  color: #d5deed;
  padding: 0.2rem 0.42rem;
  min-width: 2rem;
}

.drag-handle:active {
  cursor: grabbing;
}

.sortable-item.is-drag-over,
.section-editor-item.is-drag-over {
  border-color: #d6484d;
  box-shadow: 0 0 0 1px rgba(214, 72, 77, 0.35);
}

.sortable-item.is-dragging,
.section-editor-item.is-dragging {
  opacity: 0.55;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.check-label input[type='checkbox'] {
  width: auto;
}

.inline-fields {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.event-top-row {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: end;
}

.event-half-row {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lineup-builder {
  display: grid;
  gap: 0.7rem;
}

.lineup-builder > button {
  justify-self: start;
}

label {
  font-weight: 600;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

input,
textarea,
button,
select {
  font: inherit;
}

input,
textarea {
  width: 100%;
  background: #1c222d;
  border: 1px solid #4c5567;
  color: #f1f3f7;
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
}

select {
  width: 100%;
  background: #1c222d;
  border: 1px solid #4c5567;
  color: #f1f3f7;
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
}

input::placeholder,
textarea::placeholder {
  color: #b7bfcc;
}

input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.2);
  cursor: pointer;
}

.tiptap-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

button {
  border: 1px solid #7a171c;
  background: linear-gradient(180deg, #7a171c 0%, #5d1015 100%);
  color: #fff;
  border-radius: 8px;
  padding: 0.42rem 0.7rem;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  border-color: #c0363e;
  background: linear-gradient(180deg, #8e1d23 0%, #6b1218 100%);
  box-shadow: 0 0 14px rgba(204, 42, 47, 0.32);
}

.tiptap-editor {
  border: 1px solid #2f3645;
  border-radius: 10px;
  min-height: 200px;
  padding: 0.85rem;
  background: #0d1016;
}

.tiptap-editor .ProseMirror {
  outline: none;
  min-height: 180px;
}

.admin-actions {
  display: flex;
  gap: 0.6rem;
}

.admin-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.admin-list article {
  border: 1px solid #2f3645;
  border-radius: 10px;
  padding: 0.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.admin-list .actions {
  display: flex;
  gap: 0.45rem;
}

.featured-link-list-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.featured-link-list-thumb {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #3a4356;
  background: #11161f;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.32rem 0;
  border-bottom: 1px solid #242b37;
}

.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #242b37;
  padding-bottom: 0.2rem;
}

.site-footer {
  border-top: 1px solid var(--edge);
  padding: 1rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.ig-link {
  color: #f2f5fb;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-signup-form {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-signup-form label {
  font-size: 0.86rem;
  color: #c8ced9;
}

.header-newsletter-form label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.newsletter-signup-form input[type='email'] {
  min-width: 240px;
}

.header-newsletter-form {
  justify-content: flex-end;
}

.header-newsletter-status {
  margin: 0;
  text-align: right;
  max-width: 430px;
}

.build-stamp {
  margin: 0;
  width: 100%;
  color: #8f97a6;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.admin-link {
  border: 1px solid #3a4356;
  border-radius: 999px;
  padding: 0.28rem 0.76rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.quick-links a {
  border: 1px solid #3a4356;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.website-icon-wrap {
  display: inline-flex;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.website-icon-link {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid #3c4659;
  background: #1d2430;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.website-icon-link:hover {
  border-color: #d6484d;
  box-shadow: 0 0 10px rgba(214, 72, 77, 0.35);
}

.website-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.website-icon-link.is-disabled {
  opacity: 0.35;
  filter: grayscale(1);
  cursor: not-allowed;
  pointer-events: none;
}

.reveal,
.reveal-fast {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 0.7s ease forwards;
}

.reveal-fast {
  animation-duration: 0.45s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero,
  .about-grid,
  .report-layout,
  .event-intro-card {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-right {
    justify-items: start;
    width: 100%;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-newsletter-form {
    justify-content: flex-start;
  }

  .header-newsletter-status {
    text-align: left;
  }

  .footer-links {
    width: 100%;
  }

  .sticky-card {
    position: static;
  }

  .report-sidebar {
    padding-top: 0;
  }

  .editor-panel {
    width: 100vw;
  }

  .drawer-overlay {
    display: none;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-gallery-item.is-large {
    grid-column: auto;
  }

  .event-top-row,
  .event-half-row {
    grid-template-columns: 1fr;
  }

  .event-list-card-layout {
    grid-template-columns: 1fr;
  }

  .event-list-image-tile {
    width: 92px;
    height: 92px;
  }
}

@media (min-width: 768px) {
  .featured-grid {
    --featured-cols: 3;
  }
}

@media (min-width: 1100px) {
  .featured-grid {
    --featured-cols: 4;
  }
}

@media (min-width: 1700px) {
  .featured-grid {
    --featured-cols: 5;
  }
}

@media (min-width: 2200px) {
  .featured-grid {
    --featured-cols: 6;
  }
}
