


:root {
  --navy: #00284a;
  --navy-2: #063b66;
  --teal: #00a99d;
  --teal-dark: #007f77;
  --ink: #172635;
  --muted: #5f6f7f;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --line: #dfe8ef;
  --shadow: 0 12px 34px rgba(0, 40, 74, 0.1);
  --shadow-hover: 0 18px 40px rgba(0, 40, 74, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --header-height: 90px;
  --font-main: "Lato", Arial, sans-serif;
  --container: 1180px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p { color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--soft { background: var(--soft); }
.section--navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255, 255, 255, 0.78); }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-head p { margin-top: 12px; }




.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  box-shadow: 0 6px 24px rgba(0, 25, 48, 0.18);
  height: 76px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-block;
  position: relative;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 40, 74, 0.88), rgba(6, 59, 102, 0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  max-width: 680px;
}

.hero-content .eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px;
}

.hero-content h1 {
  color: #fff;
  font-size: 46px;
  margin: 14px 0 18px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dots button.is-active {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.15);
}


.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  overflow: hidden;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.page-banner h1 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 10px;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 169, 157, 0.25), transparent 60%);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 169, 157, 0.28);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 127, 119, 0.28);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 40, 74, 0.18);
}

.btn-dark:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #1fae54;
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 174, 84, 0.28);
}

.btn-whatsapp:hover {
  background: #178a42;
  transform: translateY(-2px);
}

.btn-block { width: 100%; }


.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-body { padding: 26px; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 169, 157, 0.12);
  color: var(--teal-dark);
  margin-bottom: 18px;
  font-size: 24px;
}

.card-media { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }


.doctor-card { text-align: center; }
.doctor-card .card-media { aspect-ratio: 3 / 4; }
.doctor-card .card-body h3 { margin-bottom: 4px; }
.doctor-card .specialty {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}
.doctor-card ul { text-align: left; margin-top: 10px; }
.doctor-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--muted);
}
.doctor-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}


.branch-card .card-body { display: flex; flex-direction: column; gap: 12px; }
.branch-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.branch-actions .btn { padding: 10px 18px; font-size: 14px; }


.proc-card summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.proc-card summary::-webkit-details-marker { display: none; }
.proc-card summary::after {
  content: "+";
  font-size: 22px;
  color: var(--teal-dark);
  transition: transform 0.25s ease;
}
.proc-card[open] summary::after { transform: rotate(45deg); }
.proc-card .proc-body {
  padding: 0 26px 26px;
}
.proc-card .proc-body h4 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proc-card .proc-body p { font-size: 15px; }
.proc-list { display: flex; flex-direction: column; gap: 18px; }


.form-grid { display: grid; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

input, select, textarea {
  border: 1px solid #cbd9e4;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--ink);
  width: 100%;
}

textarea { resize: vertical; min-height: 130px; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.12);
}

.field-error {
  font-size: 13px;
  color: #c53030;
  min-height: 16px;
}

.form-note {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

.form-note--success { background: #e7f8f1; color: #0f7a52; }
.form-note--error { background: #fdeceb; color: #c53030; }


.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\002B";
  font-size: 20px;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 4px 20px; }


.site-footer { background: #071c2d; color: #eee; }

.footer-top {
  padding: 60px 0 40px;
  border-top: 4px solid var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px;
}

.footer-grid h4 { color: #fff; margin-bottom: 18px; font-size: 16px; }
.footer-grid p, .footer-grid a { color: #cfd8e1; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }
.footer-grid li { margin-bottom: 10px; }

.footer-logo img { max-height: 46px; margin-bottom: 16px; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: #b7c2cc;
}


.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }


.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 28px; }
.stat-row .stat strong { display: block; font-size: 30px; color: var(--navy); }
.stat-row .stat span { color: var(--muted); font-size: 14px; }


/* Contacto: tarjetas de redes sociales */
.contact-socials {
  display: grid;
  gap: 20px;
}
.contact-social-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-social-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}
.contact-social-icon svg { width: 34px; height: 34px; fill: currentColor; }
.contact-social-copy { display: flex; flex-direction: column; align-items: flex-start; }
.contact-social-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  margin-bottom: 3px;
}
.contact-social-copy strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 7px;
}
.contact-social-copy > span {
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 10px;
}
.contact-social-copy b { font-size: 14px; }
.contact-social-card--whatsapp:hover { border-color: #25d366; }
.contact-social-card--whatsapp .contact-social-icon { background: #25d366; }
.contact-social-card--whatsapp b { color: #159447; }
.contact-social-card--instagram:hover { border-color: #e1306c; }
.contact-social-card--instagram .contact-social-icon {
  background: linear-gradient(135deg,#833ab4,#e1306c,#fd1d1d,#fcb045);
}
.contact-social-card--instagram b { color: #d62976; }
.contact-social-card--facebook:hover { border-color: #1877f2; }
.contact-social-card--facebook .contact-social-icon { background: #1877f2; }
.contact-social-icon--facebook { font-family: Arial, sans-serif; }
.contact-social-card--facebook b { color: #1877f2; }
@media (max-width: 520px) {
  .contact-social-card { padding: 20px 18px; gap: 16px; align-items: flex-start; }
  .contact-social-icon { width: 52px; height: 52px; flex-basis: 52px; font-size: 26px; }
  .contact-social-icon svg { width: 28px; height: 28px; }
  .contact-social-copy strong { font-size: 20px; }
}


/* =========================================================
   BLOG / NOTICIAS
========================================================= */

.blog-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0,40,74,.93), rgba(6,59,102,.78)),
    url("../images/blog/historia-robles.jpg") center 44% / cover no-repeat;
}

.blog-banner::after {
  background: radial-gradient(circle at 80% 25%, rgba(0,169,157,.30), transparent 55%);
}

.blog-featured {
  min-height: 360px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-featured-media {
  min-height: 420px;
  overflow: hidden;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.blog-featured-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(29px, 3vw, 40px);
}

.blog-featured-copy p {
  margin-bottom: 24px;
  font-size: 17px;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 13px;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(0,169,157,.10);
  font-weight: 700;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 700;
}

.blog-read-more:hover {
  color: var(--navy);
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.blog-search-wrap label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.blog-search-box {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #cfdce5;
  border-radius: 11px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-search-box:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,169,157,.09);
}

.blog-search-box span {
  color: var(--teal-dark);
  font-size: 24px;
  line-height: 1;
}

.blog-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.blog-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}

.blog-filter {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #cfdce5;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.blog-filter:hover,
.blog-filter.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.blog-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.blog-results-head h2 {
  font-size: 28px;
}

.blog-results-head span {
  color: var(--muted);
  font-size: 14px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,40,74,.07);
  transition: transform .24s ease, box-shadow .24s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf1f5;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.035);
}

.blog-card-body {
  padding: 23px;
}

.blog-card-body h3 {
  margin: 13px 0 10px;
  font-size: 21px;
}

.blog-card-body h3 a:hover {
  color: var(--teal-dark);
}

.blog-card-body p {
  margin-bottom: 17px;
  font-size: 14.5px;
  line-height: 1.65;
}

.blog-empty {
  padding: 50px 24px;
  text-align: center;
  border: 1px dashed #b8cbd8;
  border-radius: 14px;
  background: #fff;
}

.blog-empty strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 20px;
}

/* Artículo individual */

.article-page {
  padding-top: var(--header-height);
}

.article-shell {
  width: min(900px, 100%);
  margin: 0 auto;
}

.article-heading {
  max-width: 790px;
  margin: 0 auto 34px;
}

.article-back {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--teal-dark);
  font-weight: 700;
}

.article-heading .blog-meta {
  margin-bottom: 14px;
}

.article-heading h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 52px);
}

.article-lead {
  font-size: 19px;
  line-height: 1.7;
}

.article-cover {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.article-body {
  max-width: 760px;
  margin: 42px auto 0;
}

.article-body p {
  margin-bottom: 22px;
  color: #344555;
  font-size: 17px;
  line-height: 1.85;
}

.article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 34px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.article-share strong {
  color: var(--navy);
  margin-right: 4px;
}

.article-share a {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.article-share a:hover {
  color: #fff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}
