:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-2: #eef1f4;
  --text: #17202a;
  --muted: #6c7785;
  --primary: #004a7f;
  --primary-2: #00a4bd;
  --danger: #b42318;
  --border: #d8dde5;
  --shadow: 0 16px 35px rgba(7, 30, 56, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 15% -10%, #d6ecff 0%, transparent 45%),
              radial-gradient(circle at 80% 0%, #caf7ef 0%, transparent 42%),
              var(--bg);
  font-family: 'Manrope', sans-serif;
}

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(243, 245, 248, 0.85);
  border-bottom: 1px solid rgba(216, 221, 229, 0.7);
}

.landing-intro .main-header {
  display: none;
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.brand-logo {
  width: 120px;
  height: 120px;
  padding: 5px;
  border-radius: 14px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.93rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
  border-color: var(--primary-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: linear-gradient(135deg, #e5f2ff, #d8ecff);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 16px rgba(3, 64, 113, 0.15);
}

.menu-toggle-bar {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #034071;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #d8ecff;
  color: #034071;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  margin-left: 0;
}

.section {
  padding: 1rem 0 3.2rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.talent-card,
.application-card,
.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.talent-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  background: #f3f6fb;
}

.talent-card-body {
  padding: 1rem;
}

.talent-card h3,
.talent-card h4 {
  margin: 0 0 0.4rem;
}

.talent-card p {
  margin: 0;
  color: var(--muted);
}

.chip {
  display: inline-block;
  margin-top: 0.7rem;
  background: #d8ecff;
  color: #034071;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 20px rgba(2, 58, 100, 0.25);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  margin-left: 0.6rem;
}

.btn-danger {
  background: #fee4e2;
  color: var(--danger);
}

.btn-xl {
  font-size: 1.1rem;
  padding: 0.9rem 1.7rem;
}

.form-card,
.filter-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.form-card label,
.filter-bar label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.72rem;
  background: #fff;
  margin-top: 0.35rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #99d0ff;
  border-color: #7bbef5;
}

input[type="checkbox"] {
  width: auto;
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem 1rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  align-items: end;
}

.alert {
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
}

.alert.success {
  background: #dcfae6;
  color: #05603a;
}

.alert.error {
  background: #fee4e2;
  color: #9c2415;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.intro-overlay video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.intro-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0.72;
  pointer-events: none;
}

.intro-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 32, 53, 0.7), rgba(0, 0, 0, 0.25));
}

.intro-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 1rem;
  animation: rise 0.7s ease;
}

.intro-logo {
  width: min(240px, 56vw);
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.intro-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 7vw, 5rem);
  margin-bottom: 0.7rem;
}

.intro-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s ease;
}

.intro-menu-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem;
  width: min(860px, 90vw);
}

.intro-menu-grid .btn-outline {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.9);
}

.intro-apply-spot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0.65rem;
}

.intro-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.92rem 2rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: introApplyPulse 1.9s ease-in-out infinite;
}

.intro-apply-btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: saturate(1.1);
  box-shadow: 0 16px 34px rgba(239, 68, 68, 0.5);
}

.intro-menu-hidden {
  display: none;
}

.home-hidden {
  display: none;
}

.main-footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-admin-link {
  font-weight: 700;
  color: var(--primary);
}

.footer-admin-link:hover {
  color: var(--primary-2);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.vote-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #101820;
  box-shadow: 0 22px 42px rgba(6, 20, 33, 0.22);
}

.vote-media-card img {
  display: block;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  object-position: center;
  background: #f3f6fb;
}

.vote-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0), rgba(16, 24, 32, 0.1));
}

.vote-ribbon {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0d334c;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vote-panel,
.vote-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.vote-panel {
  margin-top: 0.85rem;
  padding: 0.85rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f9fbff);
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(2, 20, 34, 0.18);
}

.profile-vote-panel {
  position: relative;
}

.vote-panel strong,
.vote-card-footer strong,
.vote-total-number {
  color: #ed4f2f;
  font-size: 1.6rem;
  line-height: 1;
}

.vote-panel span,
.vote-card-footer span,
.profile-vote-summary span:last-child {
  color: #506072;
  font-size: 0.82rem;
  font-weight: 800;
}

.vote-kicker {
  display: block;
  margin-bottom: 0.22rem;
  color: #0f5b8e !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vote-btn {
  min-width: 112px;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, #ed4f2f, #f7b733);
  box-shadow: 0 12px 24px rgba(237, 79, 47, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: votePulse 2s ease-in-out infinite;
}

.vote-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
  box-shadow: 0 16px 30px rgba(237, 79, 47, 0.44);
}

.vote-btn:disabled {
  cursor: default;
  transform: none;
  animation: none;
}

.vote-btn.is-voted {
  background: linear-gradient(135deg, #0f7b63, #31c48d);
  box-shadow: 0 10px 20px rgba(15, 123, 99, 0.24);
}

.vote-btn-small {
  min-width: 84px;
  padding: 0.58rem 0.85rem;
}

.profile-vote-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.2rem 0 0.7rem;
  padding: 0.62rem 0.82rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff5e7, #eef9ff);
  border: 1px solid #ffd7a5;
}

.vote-gallery-card {
  position: relative;
}

.vote-gallery-card img {
  height: 330px;
}

.photo-slider {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, #fdfefe, #f4f9ff);
  box-shadow: 0 20px 36px rgba(8, 32, 55, 0.14);
  padding: 0.75rem;
}

.photo-slider-viewport {
  border-radius: 14px;
  overflow: hidden;
}

.photo-slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.photo-slide {
  flex: 0 0 100%;
  margin: 0;
  background: #eff4fa;
}

.photo-slide img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: center;
  background: #f3f6fb;
}

.photo-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(8, 30, 51, 0.2);
  color: #0d334c;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 2;
}

.photo-slider-btn:hover {
  filter: brightness(0.97);
}

.photo-slider-prev {
  left: 1.1rem;
}

.photo-slider-next {
  right: 1.1rem;
}

.photo-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.photo-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #b5c6d8;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.photo-slider-dot.is-active {
  transform: scale(1.2);
  background: #0f5b8e;
}

.vote-card-footer {
  padding: 0.8rem;
  background: linear-gradient(135deg, #ffffff, #f9fbff);
  border-top: 1px solid var(--border);
}

.vote-card-footer div {
  display: grid;
  gap: 0.1rem;
}

.vote-video-wrap {
  overflow: hidden;
  margin-top: 0.8rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.responsive-video {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  background: #000;
}

.responsive-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vote-video-wrap video {
  display: block;
  width: 100%;
  max-height: 580px;
  background: #000;
}

.vote-video-footer {
  padding: 0.95rem;
}

@keyframes votePulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(237, 79, 47, 0.3);
  }
  50% {
    box-shadow: 0 16px 34px rgba(247, 183, 51, 0.48);
  }
}

.prose {
  line-height: 1.8;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-body {
  background: linear-gradient(180deg, #f3f8ff, #f8fbff);
}

.admin-login-card {
  width: min(420px, 92vw);
  margin: 8vh auto;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.admin-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

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

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

.seo-stats .stat-card {
  padding: 1rem;
}

.seo-stats .stat-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.seo-stats .stat-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.seo-copy p {
  max-width: 940px;
  margin: 0 0 1rem;
  color: #283445;
  line-height: 1.8;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.service-card,
.process-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.service-card h3,
.process-card h3,
.faq-item h3 {
  margin: 0 0 0.5rem;
}

.service-card p,
.process-card p,
.faq-item p {
  margin: 0;
  color: #3b4b5e;
  line-height: 1.7;
}

.process-step {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f5b8e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-section {
  padding-bottom: 3.5rem;
}

.faq-item + .faq-item {
  margin-top: 0.85rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 1rem 1.1rem;
  font: inherit;
  cursor: pointer;
}

.faq-question span:first-child {
  font-weight: 700;
}

.faq-symbol {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  color: #0f5b8e;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-symbol {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.1rem 1rem;
}

.faq-cta {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.faq-cta a {
  color: #0f5b8e;
}

.faq-cta a:hover {
  color: var(--primary);
}

.what-we-offer {
  padding-top: 0.4rem;
}

.offer-subtitle {
  margin: 0 0 0.7rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.offer-lead {
  margin: 0 0 1.2rem;
  color: #3b4b5e;
  max-width: 920px;
  line-height: 1.75;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.offer-card {
  background: linear-gradient(165deg, #ffffff, #f7fbff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.offer-icon {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
  line-height: 1;
}

.offer-card h3 {
  margin: 0 0 0.45rem;
}

.offer-card p {
  margin: 0;
  color: #3b4b5e;
  line-height: 1.7;
}

.casting-request-section {
  padding-bottom: 4rem;
}

.casting-form {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.stat-card {
  padding: 1rem;
}

.stat-card h3 {
  margin: 0;
  font-size: 2rem;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr 140px auto;
  gap: 0.8rem;
  align-items: end;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.7rem;
  text-align: left;
}

.tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.tabs a {
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  background: #e8eef5;
  font-weight: 600;
}

.tabs a.active {
  background: #d4ecff;
}

.admin-cards {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.application-card {
  padding: 1rem;
}

.application-card h3 {
  margin-top: 0;
}

.thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.5rem 0;
}

.thumb-row img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

.action-row {
  display: flex;
  gap: 0.7rem;
}

.link-arrow {
  font-weight: 700;
  color: #0f5b8e;
}

@keyframes rise {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes introApplyPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.38);
  }
  50% {
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.62);
  }
}

@media (max-width: 980px) {
  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.4rem;
  }

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

@media (max-width: 820px) {
  .nav-wrap {
    position: relative;
    min-height: 76px;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0.2rem;
    right: 0.2rem;
    background: #fff;
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: none;
    box-shadow: 0 18px 36px rgba(7, 30, 56, 0.16);
    gap: 0.35rem;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: #f7fbff;
    border-bottom: 1px solid transparent;
  }

  .nav-links a.active,
  .nav-links a:hover {
    border-color: #b4daf8;
    background: #e9f5ff;
  }

  .nav-links.open {
    display: flex;
  }

  .intro-apply-btn {
    width: min(100%, 300px);
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .vote-panel,
  .vote-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .vote-btn {
    width: 100%;
  }

  .vote-gallery-card img {
    height: 300px;
  }

  .photo-slide img {
    height: 380px;
  }

  .photo-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .photo-slider-prev {
    left: 0.7rem;
  }

  .photo-slider-next {
    right: 0.7rem;
  }
}
