/* ==========================================================================
   EA Resume — Modern Minimalist Styles
   ========================================================================== */

:root {
  --font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 1rem;
  --line-height: 1.6;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --transition: 0.2s ease;

  --max-width: 100%;
  --max-width-wide: min(1140px, 96vw);
  --page-gutter: clamp(0.75rem, 2.5vw, 1.25rem);
}

/* Dark theme (default) */
[data-theme="dark"] {
  --color-bg: #0f1117;
  --color-bg-elevated: #1a1d27;
  --color-bg-card: #1e2230;
  --color-text: #e8eaef;
  --color-text-muted: #9ca3b4;
  --color-text-subtle: #6b7280;
  --color-border: #2d3348;
  --color-accent: #6ee7b7;
  --color-accent-hover: #34d399;
  --color-accent-muted: rgba(110, 231, 183, 0.12);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Light theme */
[data-theme="light"] {
  --color-bg: #fafbfc;
  --color-bg-elevated: #ffffff;
  --color-bg-card: #ffffff;
  --color-text: #1a1d27;
  --color-text-muted: #4b5563;
  --color-text-subtle: #6b7280;
  --color-border: #e5e7eb;
  --color-accent: #059669;
  --color-accent-hover: #047857;
  --color-accent-muted: rgba(5, 150, 105, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: var(--space-lg) var(--page-gutter) var(--space-md);
  max-width: var(--max-width-wide);
  margin: 0 auto;
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-md) var(--space-lg);
  align-items: start;
  max-width: var(--max-width-wide);
}

.hero__nav {
  position: absolute;
  top: var(--space-lg);
  right: var(--page-gutter);
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.hero__photo {
  margin: 0;
  flex-shrink: 0;
}

.hero__photo img {
  display: block;
  width: 180px;
  height: 180px;
  max-width: none;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.hero__text {
  min-width: 0;
}

.hero__eyebrow {
  margin: 0 0 var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero__name {
  margin: 0 0 var(--space-sm);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__tagline {
  margin: 0 0 var(--space-md);
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 36ch;
}

.hero__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-md) var(--space-lg);
  align-items: start;
}

.hero__col-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  min-width: 0;
}

.hero__core-tech.callout {
  margin: 0;
  min-width: 0;
}

.hero__core-tech .summary__strengths-title {
  margin-bottom: var(--space-sm);
}

.tags--hero {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.75rem, 1fr));
  gap: 0.3rem;
}

.tags--hero .tag {
  display: block;
  padding: 0.3rem 0.45rem;
  font-size: 0.6875rem;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  border-radius: var(--radius-sm);
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: var(--space-sm) var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}

.hero__links a:hover {
  color: var(--color-accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition);
}

.theme-toggle:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-muted);
}

.theme-toggle__icon {
  font-size: 1.125rem;
  line-height: 1;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  display: inline;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--sun {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--moon {
  display: inline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .btn--primary {
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
}

.btn__icon {
  flex-shrink: 0;
}

/* ==========================================================================
   Main sections
   ========================================================================== */

main {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--page-gutter) var(--space-xl);
  width: 100%;
}

.section {
  max-width: var(--max-width);
  margin-bottom: var(--space-lg);
}

.section--summary {
  max-width: none;
  margin-top: 0;
}

.summary__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  grid-template-areas:
    "title"
    "body"
    "callout";
  align-items: start;
}

.summary__title {
  grid-area: title;
  margin-bottom: 0;
}

.summary__body {
  grid-area: body;
}

.summary__callout {
  grid-area: callout;
}

@media (max-width: 899px) {
  .hero__row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .hero__col-main {
    align-items: center;
    width: 100%;
  }

  .hero__core-tech.callout {
    margin-top: var(--space-sm);
  }

  .tags--hero {
    grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
  }

  .tags--hero .tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .hero__links {
    justify-content: center;
  }
}

.section__title {
  margin: 0 0 var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.section__body .section__text + .section__text {
  margin-top: var(--space-sm);
}

.section__text {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
}

/* Callout */
.callout {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.callout--compact {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.callout__title,
.summary__strengths-title {
  margin: 0 0 var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.summary__strengths-title {
  line-height: 1.3;
}

.callout__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.callout__list li {
  margin-bottom: 0.25rem;
}

.callout__list li:last-child {
  margin-bottom: 0;
}

.callout__list--rich li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.callout__list--rich li strong {
  color: var(--color-text);
}

/* Tech tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: border-color var(--transition);
}

.tag:hover {
  border-color: var(--color-accent);
}

/* Competencies grid */
.competencies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.competencies--compact .competencies__item {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
}

.competencies__item {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.competencies__item:hover {
  border-color: var(--color-accent);
}

.competencies__label {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--color-text);
}

.competencies__desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .competencies {
    grid-template-columns: 1fr;
  }
}

/* Timeline */
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline__marker {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-muted);
  z-index: 1;
}

.timeline__card {
  min-width: 0;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.timeline__card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-border));
}

.timeline__header {
  margin-bottom: var(--space-sm);
}

.timeline__role {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.timeline__company {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-accent);
}

.timeline__meta {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.timeline__dates {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

.timeline__intro {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.timeline__subsection {
  margin-top: var(--space-sm);
}

.timeline__subsection-title {
  margin: 0 0 var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.timeline__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.timeline__list li {
  margin-bottom: 0.375rem;
}

.timeline__list li:last-child {
  margin-bottom: 0;
}

.timeline__tech {
  margin: var(--space-md) 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.timeline__tech strong {
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Education */
.edu-card {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.edu-card + .edu-card {
  margin-top: var(--space-sm);
}

.edu-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.edu-card__institution {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 500;
}

.edu-card__dates {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

/* Additional info */
.info-list {
  margin: 0;
}

.info-list__row {
  margin-bottom: var(--space-md);
}

.info-list__row:last-child {
  margin-bottom: 0;
}

.info-list__term {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.info-list__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Contact */
.section--contact {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-list__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.contact-list__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-list__link:hover {
  color: var(--color-accent);
}

.contact-list__value {
  font-weight: 500;
  color: var(--color-text);
}

/* Footer */
.footer {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-lg);
  }

  .hero__inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "photo nav"
      "text text";
    gap: var(--space-md);
  }

  .hero__photo {
    grid-area: photo;
    justify-self: center;
  }

  .hero__nav {
    position: static;
    grid-area: nav;
    align-self: start;
    justify-self: end;
  }

  .hero__text {
    grid-area: text;
    text-align: center;
    max-width: 100%;
  }

  .hero__photo img {
    width: 160px;
    height: 160px;
  }

  .hero__tagline {
    font-size: 1rem;
    max-width: none;
  }

  .hero__row {
    grid-template-columns: 1fr;
  }

  .hero__links {
    justify-content: center;
  }

  .hero__col-main {
    align-items: center;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
  }

  .btn--primary {
    width: 100%;
    max-width: 20rem;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
  }

  .timeline__item {
    grid-template-columns: 20px 1fr;
    gap: var(--space-sm);
  }

  .timeline__item:not(:last-child)::before {
    left: 9px;
  }

  .timeline__marker {
    margin-left: 4px;
  }
}

@media (max-width: 480px) {
  .hero__photo img {
    width: 140px;
    height: 140px;
  }
}

/* ==========================================================================
   Print / PDF
   Turn off browser headers/footers in the print dialog to avoid repeated page numbers.
   ========================================================================== */

@page {
  size: A4;
  margin: 12mm 14mm;
}

@media print {
  :root {
    --color-bg: #ffffff;
    --color-bg-elevated: #ffffff;
    --color-bg-card: #ffffff;
    --color-text: #111827;
    --color-text-muted: #374151;
    --color-text-subtle: #6b7280;
    --color-border: #d1d5db;
    --color-accent: #047857;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 11pt;
    line-height: 1.45;
  }

  .skip-link,
  .hero__nav,
  .hero__actions,
  .hero__col-main,
  .hero__links,
  .theme-toggle {
    display: none !important;
  }

  .hero {
    padding: 0 0 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #047857;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    break-inside: auto;
  }

  .summary__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "body"
      "callout";
  }

  .summary__callout {
    break-after: page;
    page-break-after: always;
  }

  .hero__text {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.2rem;
    align-items: start;
    text-align: left;
  }

  .hero__eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .hero__name {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0.1rem;
  }

  .hero__tagline {
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 0.25rem;
    font-size: 10pt;
  }

  .hero__row {
    display: contents;
  }

  .hero__core-tech.callout {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    margin: 0.25rem 0 0;
    break-inside: auto;
  }

  .hero__core-tech .summary__strengths-title {
    margin-bottom: 0.2rem;
    font-size: 8pt;
  }

  .tags--hero {
    grid-template-columns: repeat(auto-fill, minmax(4.75rem, 1fr));
    gap: 0.2rem;
  }

  .tags--hero .tag {
    font-size: 6.5pt;
    padding: 0.1rem 0.25rem;
    line-height: 1.2;
  }

  .hero__photo img {
    width: 90px;
    height: 90px;
    max-width: none;
    border: 1px solid #d1d5db;
    box-shadow: none;
  }

  .hero__eyebrow {
    color: #047857;
  }

  .hero__name {
    font-size: 22pt;
    color: #111827;
  }

  .hero__tagline {
    color: #374151;
    max-width: none;
  }

  main,
  .hero,
  .footer {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    margin-bottom: 0.6rem;
    break-inside: auto;
    page-break-inside: auto;
  }

  .section__title {
    color: #047857;
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 0.2rem;
    margin-bottom: 0.4rem;
    break-after: avoid;
    page-break-after: avoid;
  }

  .timeline__role {
    break-after: avoid;
    page-break-after: avoid;
  }

  .callout {
    margin-top: 0.35rem;
    padding: 0.5rem 0.6rem;
    background: #f0fdf4;
    border-color: #d1d5db;
    border-left-color: #047857;
    break-inside: auto;
    page-break-inside: auto;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .summary__strengths-title {
    break-after: avoid;
    page-break-after: avoid;
    margin-bottom: 0.25rem;
    font-size: 8pt;
    color: #047857;
  }

  .callout--compact {
    color: #374151;
  }

  .tag {
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111827;
  }

  .competencies {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .competencies__item {
    border: 1px solid #d1d5db;
    box-shadow: none;
    padding: 0.3rem 0.45rem;
    break-inside: auto;
    page-break-inside: auto;
  }

  .competencies__label {
    font-size: 8pt;
  }

  .competencies__desc {
    font-size: 7.5pt;
  }

  .timeline__card {
    border: 1px solid #e5e7eb;
    box-shadow: none;
    padding: 0.5rem 0.6rem;
    break-inside: auto;
    page-break-inside: auto;
  }

  .timeline__item {
    break-inside: auto;
    page-break-inside: auto;
    padding-bottom: 0.5rem;
  }

  .timeline__company {
    color: #047857;
  }

  .timeline__item:not(:last-child)::before {
    background: #d1d5db;
  }

  .timeline__marker {
    background: #047857;
    box-shadow: none;
  }

  .timeline__intro {
    color: #4b5563;
  }

  .timeline__subsection {
    break-inside: auto;
    margin-top: 0.35rem;
  }

  .timeline__subsection-title {
    break-after: avoid;
    page-break-after: avoid;
  }

  .timeline__tech {
    color: #6b7280;
  }

  .edu-card {
    border: 1px solid #e5e7eb;
    break-inside: auto;
    padding: 0.4rem 0.5rem;
  }

  .edu-card + .edu-card {
    margin-top: 0.35rem;
  }

  .edu-card__institution {
    color: #047857;
  }

  .info-list__row {
    break-inside: auto;
    margin-bottom: 0.35rem;
  }

  .section--contact {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1.5rem;
  }

  .contact-list__label {
    color: #6b7280;
  }

  .contact-list__link {
    color: #047857;
  }

  .footer {
    display: none !important;
  }

  a[href]::after {
    content: none;
  }
}
