:root {
  --dmk-black: #000000;
  --dmk-red: #eb232d;
  --dmk-red-dark: #ac0000;
  --dmk-red-bright: #fd2424;
  --sunrise-gold: #f6b300;
  --sunrise-amber: #ffcf40;
  --surface-light: #fff9f1;
  --surface-dark: #171717;
  --text-primary: #161616;
  --text-light: #f6f6f6;
  --muted: #595959;
  --line: #e1d7d0;
  --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  font-family: "Poppins", "Noto Sans Tamil", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, rgba(246, 179, 0, 0.16), transparent 30%),
    radial-gradient(circle at 95% 5%, rgba(235, 35, 45, 0.22), transparent 25%),
    linear-gradient(180deg, #fff9f1 0%, #ffffff 42%, #fff6f6 100%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  background: #fff;
  color: #000;
  padding: 0.4rem 0.75rem;
  z-index: 1000;
  border-radius: 6px;
  border: 1px solid #000;
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 4.75rem 0;
}

.reveal-up {
  animation: revealUp 700ms ease both;
}

@keyframes revealUp {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 2px solid var(--dmk-red);
}

.header-band {
  height: 3px;
  background: linear-gradient(90deg, var(--sunrise-gold), var(--dmk-red), var(--dmk-black));
}

.nav-wrap {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  min-width: 0;
}

.brand-text {
  color: #fff;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: normal;
  line-height: 1.18;
  max-width: min(44vw, 420px);
  overflow-wrap: anywhere;
}

html.lang-ta .brand-text {
  font-family: "Noto Sans Tamil", sans-serif;
  letter-spacing: 0;
  line-height: 1.22;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 0.42rem 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.3rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 0.34rem 0.48rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.2s ease;
}

html.lang-ta .site-nav a {
  font-family: "Noto Sans Tamil", sans-serif;
  font-size: 0.76rem;
  padding: 0.34rem 0.4rem;
}

html.lang-ta .brand-text {
  max-width: min(30vw, 280px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: inline-flex;
  padding: 0.2rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0.27rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  background: linear-gradient(90deg, var(--dmk-red-dark), var(--dmk-red));
}

.admin-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.32rem 0.64rem;
  border-radius: 999px;
}

.mobile-admin {
  display: none;
}

.hero {
  padding-top: 5.4rem;
  background: linear-gradient(150deg, #110c0c 0%, #2a0000 46%, #120d0d 100%);
  color: #fff;
  overflow: hidden;
}

.sunrise-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -220px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 207, 64, 0.55) 0%, rgba(255, 207, 64, 0) 65%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe182;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.15rem);
  font-family: "Bebas Neue", "Noto Sans Tamil", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.03;
  color: #fff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  max-width: 58ch;
}

html.lang-ta .hero-copy h1 {
  font-family: "Noto Sans Tamil", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.68rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-block;
}

.btn-solid {
  background: linear-gradient(90deg, var(--dmk-red-dark), var(--dmk-red));
  color: #fff;
  box-shadow: 0 9px 18px rgba(235, 35, 45, 0.32);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--card-shadow);
}

.hero-media {
  padding: 1rem;
}

.hero-media-dmk .media-slider::after {
  content: "DMK";
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  background: rgba(180, 0, 0, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.media-slider {
  position: relative;
}

.media-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 13px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.media-slider-track::-webkit-scrollbar {
  display: none;
}

.media-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.media-slider-btn.prev {
  left: 10px;
}

.media-slider-btn.next {
  right: 10px;
}

.hero-image {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  display: block;
  aspect-ratio: 1920 / 710;
  object-fit: contain;
}

.media-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.48);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.24);
  color: #ffe9cd;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.45;
  padding: 0.6rem;
}

.hero-placeholder {
  aspect-ratio: 16 / 9;
}

.about-placeholder {
  aspect-ratio: 4 / 5;
}

.placeholder-note {
  margin: 0.62rem 0 0;
  color: #ffe6ca;
  font-size: 0.84rem;
  text-align: center;
}

.diagonal-cut {
  height: 44px;
  width: 100%;
  margin-top: 3.6rem;
  background: linear-gradient(176deg, transparent 50%, var(--surface-light) 51%);
}

.about {
  background: linear-gradient(180deg, var(--surface-light), #fffef9);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.2rem;
}

.about-copy h2,
.section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-family: "Bebas Neue", "Noto Sans Tamil", sans-serif;
  letter-spacing: 0.04em;
}

html.lang-ta .about-copy h2,
html.lang-ta .section-head h2,
html.lang-ta .videos-head h3,
html.lang-ta .form-copy h2,
html.lang-ta .contact-card h2 {
  font-family: "Noto Sans Tamil", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.about-copy p {
  margin: 0 0 0.75rem;
  color: #2d2d2d;
  line-height: 1.72;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.about-badges span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: #ffe9cc;
  color: #6a2f00;
  border: 1px solid #ffd097;
}

.about-media {
  background: linear-gradient(165deg, #380000, #0d0d0d 75%);
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.14);
}

.about-image {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.activities {
  background: #fff;
}

.section-head p {
  margin: 0;
  max-width: 72ch;
  color: #404047;
  line-height: 1.68;
}

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

.gallery-card {
  border: 1px solid #ebe5e0;
  border-radius: 12px;
  padding: 0.5rem;
  background: linear-gradient(180deg, #fff, #fff7f7);
}

.gallery-image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-card .media-placeholder {
  aspect-ratio: 4 / 3;
  border-color: rgba(172, 0, 0, 0.28);
  color: #762e2e;
  background: repeating-linear-gradient(
    45deg,
    rgba(235, 35, 45, 0.08),
    rgba(235, 35, 45, 0.08) 10px,
    rgba(246, 179, 0, 0.08) 10px,
    rgba(246, 179, 0, 0.08) 20px
  );
}

.videos-head {
  margin-top: 2.1rem;
}

.videos-head h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-family: "Bebas Neue", "Noto Sans Tamil", sans-serif;
  letter-spacing: 0.03em;
}

.video-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.video-card {
  border: 1px solid #e9dfd9;
  border-radius: 12px;
  padding: 0.55rem;
  background: #fffdfa;
}

.video-thumb {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 1.05rem;
}

.video-card .media-placeholder {
  aspect-ratio: 16 / 9;
  border-color: rgba(0, 0, 0, 0.26);
  color: #4e4e4e;
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.08), rgba(246, 179, 0, 0.16));
}

.leaders {
  background: linear-gradient(180deg, #fff9f9, #fff2e9);
}

.leader-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.leader-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ecdeda;
  padding: 0.9rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.leader-photo {
  width: 92px;
  height: 92px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  border: 2px solid #f0ddd7;
  object-fit: cover;
  display: block;
  background: #fff5eb;
}

.leader-card h3 {
  margin: 0;
  font-size: 1rem;
}

.leader-card p {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.form-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.form-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-family: "Bebas Neue", "Noto Sans Tamil", sans-serif;
  letter-spacing: 0.04em;
}

.form-copy p {
  margin: 0;
  line-height: 1.72;
  color: #2e2e2e;
}

.form-copy ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.form-copy blockquote {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--dmk-red);
  background: #fff5f5;
  border-radius: 0 10px 10px 0;
  color: #4a1d1d;
  font-weight: 600;
}

.form-card {
  background: #fff;
  border: 1px solid #eadcd7;
  border-radius: 14px;
  padding: 1rem;
}

.form-field {
  margin-bottom: 0.8rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.form-field label {
  display: inline-block;
  margin-bottom: 0.32rem;
  font-size: 0.87rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8d8de;
  padding: 0.66rem 0.7rem;
  font-family: inherit;
  font-size: 0.93rem;
  background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(235, 35, 45, 0.3);
  border-color: var(--dmk-red);
}

.form-error {
  color: #b10024;
  display: block;
  min-height: 1.1em;
  margin-top: 0.2rem;
  font-size: 0.78rem;
}

.form-feedback {
  display: none;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.75rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
}

.form-feedback.is-success {
  display: block;
  background: #e8fff0;
  border-color: #b5f6c9;
  color: #005e2f;
}

.form-feedback.is-error {
  display: block;
  background: #fff0f2;
  border-color: #ffc2cb;
  color: #7a0018;
}

.voice-tools {
  border: 1px solid #eadcd7;
  background: #fff8f6;
  border-radius: 12px;
  padding: 0.8rem;
  margin: 0.35rem 0 0.9rem;
}

.voice-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.voice-note {
  margin: 0.35rem 0 0;
  color: #5b5454;
  font-size: 0.83rem;
}

.voice-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

#voice-audio-file {
  max-width: 220px;
  font-size: 0.8rem;
}

.voice-status {
  display: block;
  min-height: 1.1em;
  margin-top: 0.45rem;
  color: #5f000f;
  font-size: 0.8rem;
}

.turnstile-wrap {
  margin-top: 0.55rem;
}

.contact {
  background: linear-gradient(160deg, #110d0d 10%, #2d0000 70%, #100d0d);
  color: #fff;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.ai-assistant {
  background: linear-gradient(180deg, #fffef8, #fff6ef);
}

.assistant-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.assistant-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  font-family: "Bebas Neue", "Noto Sans Tamil", sans-serif;
}

.assistant-head p {
  margin: 0.55rem 0 0;
  color: #38383a;
}

.assistant-chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.assistant-chip {
  border: 1px solid #dfd3ce;
  border-radius: 999px;
  background: #fff;
  padding: 0.36rem 0.72rem;
  cursor: pointer;
  font-size: 0.82rem;
}

.assistant-card {
  border: 1px solid #eaded6;
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.assistant-messages {
  min-height: 210px;
  max-height: 320px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-right: 0.35rem;
  border: 1px solid #eee3dd;
  border-radius: 12px;
  padding: 0.65rem;
  background: #fffdfb;
}

.assistant-message {
  border-radius: 12px;
  padding: 0.5rem 0.62rem;
  font-size: 0.86rem;
  line-height: 1.45;
}

.assistant-message.user {
  align-self: flex-end;
  background: #ffe6e9;
  color: #5d0b14;
}

.assistant-message.bot {
  align-self: flex-start;
  background: #f5f6f9;
  color: #222;
}

.assistant-form {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.assistant-form input {
  border: 1px solid #d8d8de;
  border-radius: 10px;
  padding: 0.65rem 0.72rem;
  font-size: 0.9rem;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 1.8rem);
  font-family: "Bebas Neue", "Noto Sans Tamil", sans-serif;
}

.contact-card p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.social-card {
  border-radius: 12px;
  min-width: 280px;
}

.social-card img {
  width: 100%;
  max-width: 220px;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.site-footer {
  background: #0f0f10;
  color: #f1f1f1;
  padding: 1rem 0;
}

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

.footer-row p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-row a {
  color: #ffd780;
  text-decoration: none;
  font-size: 0.86rem;
}

@media (max-width: 1160px) {
  .hero-grid,
  .split-grid,
  .form-split,
  .assistant-wrap {
    grid-template-columns: 1fr;
  }

  .leader-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 0.75rem 1rem 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
    justify-content: flex-start;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 0.5rem 0.6rem;
    font-size: 0.86rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.78rem;
    max-width: 200px;
    line-height: 1.16;
  }

  html.lang-ta .brand-text {
    font-size: 0.82rem;
    max-width: 236px;
    line-height: 1.22;
  }

  .header-actions {
    justify-self: end;
    gap: 0.45rem;
  }

  .admin-link {
    display: none;
  }

  .mobile-admin {
    display: block;
  }

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

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

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

@media (max-width: 560px) {
  .section {
    padding: 3.7rem 0;
  }

  .hero {
    padding-top: 4.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 11vw, 2.7rem);
    line-height: 1.08;
  }

  html.lang-ta .hero-copy h1 {
    font-size: clamp(1.95rem, 10.2vw, 2.85rem);
    line-height: 1.15;
  }

  .brand-text {
    max-width: 148px;
    font-size: 0.72rem;
  }

  html.lang-ta .brand-text {
    max-width: 190px;
    font-size: 0.77rem;
  }

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

  .media-slider-btn {
    width: 30px;
    height: 30px;
  }

  .hero-media-dmk .media-slider::after {
    top: 8px;
    right: 8px;
    font-size: 0.64rem;
    padding: 0.2rem 0.5rem;
  }

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

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

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

  .social-card {
    min-width: 0;
  }

  .social-card img {
    max-width: 180px;
  }
}
