:root {
  --telcom-navy: #11284a;
  --telcom-navy-deep: #091a32;
  --telcom-orange: #ff6e00;
  --telcom-orange-dark: #e65f00;
  --telcom-ink: #172033;
  --telcom-muted: #647085;
  --telcom-line: #dfe4eb;
  --telcom-soft: #f4f6f9;
  --telcom-white: #fff;
  --telcom-shadow: 0 18px 55px rgba(17, 40, 74, 0.13);
  --telcom-radius: 18px;
  --telcom-container: 1240px;
}

@font-face {
  font-family: "Raleway Telcom";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCP.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--telcom-ink);
  background: var(--telcom-white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

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

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--telcom-white);
  background: var(--telcom-navy);
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--telcom-white);
  box-shadow: -1px 4px 15px -1px rgba(17, 40, 74, 0.22);
  font-family: "Raleway Telcom", sans-serif;
}

.site-header.is-scrolled .header-main {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 157px;
  background: var(--telcom-white);
  box-shadow: 0 8px 10px -8px rgba(0, 0, 0, 1);
  animation: telcom-header-smooth 600ms forwards;
}

.site-header.is-scrolled .brand img {
  width: 100%;
}

@keyframes telcom-header-smooth {
  from {
    transform: translateY(-100px);
  }

  to {
    transform: translateY(0);
  }
}

.header-main {
  display: flex;
  width: 100%;
  min-height: 157px;
  margin: 0;
  padding: 30px;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  transition: min-height 0.25s ease;
}

.brand {
  display: flex;
  flex: 0 0 25%;
  width: 25%;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  transition: width 0.25s ease;
}

.site-nav {
  display: flex;
  flex: 0 0 75%;
  width: 75%;
  min-height: 97px;
  padding-left: 32px;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.site-nav > .nav-item.has-dropdown > .nav-trigger > a {
  padding-right: 31px;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav > .nav-item > a,
.site-nav > .nav-item > .nav-trigger > a {
  position: relative;
  display: flex;
  padding: 10px 15px;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: color 0.2s ease;
}

.site-nav > .nav-item > a::after,
.site-nav > .nav-item > .nav-trigger > a::after {
  position: absolute;
  right: 15px;
  bottom: 4px;
  left: 15px;
  height: 2px;
  content: "";
  background: var(--telcom-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav > .nav-item > a:hover,
.site-nav > .nav-item > a:focus-visible,
.site-nav > .nav-item > a.is-current,
.site-nav > .nav-item > .nav-trigger > a:hover,
.site-nav > .nav-item > .nav-trigger > a:focus-visible {
  color: var(--telcom-orange);
}

.site-nav > .nav-item > a:hover::after,
.site-nav > .nav-item > a:focus-visible::after,
.site-nav > .nav-item > a.is-current::after,
.site-nav > .nav-item > .nav-trigger > a:hover::after,
.site-nav > .nav-item > .nav-trigger > a:focus-visible::after {
  transform: scaleX(1);
}

.dropdown-toggle,
.submenu-toggle {
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.dropdown-toggle {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 2;
  width: 16px;
  height: 44px;
  margin: 0;
  color: #000;
  font-size: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dropdown-toggle i {
  display: block;
  width: 16px;
  height: 24px;
  line-height: 16px;
}

.has-dropdown:hover > .nav-trigger .dropdown-toggle,
.has-dropdown:focus-within > .nav-trigger .dropdown-toggle,
.has-dropdown.is-open > .nav-trigger .dropdown-toggle {
  color: var(--telcom-orange);
}

.has-dropdown.is-open > .nav-trigger .dropdown-toggle {
  transform: rotate(180deg);
}

.dropdown-menu,
.dropdown-submenu {
  position: absolute;
  z-index: 120;
  visibility: hidden;
  border-top: 0;
  color: var(--telcom-white);
  background: var(--telcom-navy);
  box-shadow: none;
  opacity: 0;
  transform: translateY(8px);
  transition: visibility 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu {
  top: calc(100% + 10px);
  left: 0;
  width: max-content;
  min-width: 285px;
  overflow: visible;
}

.dropdown-menu--right {
  right: 0;
  left: auto;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.is-open > .dropdown-menu,
.dropdown-entry.has-children:hover > .dropdown-submenu,
.dropdown-entry.has-children:focus-within > .dropdown-submenu,
.dropdown-entry.has-children.is-open > .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.dropdown-entry {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dropdown-entry:last-child {
  border-bottom: 0;
}

.dropdown-row {
  display: flex;
  align-items: stretch;
}

.dropdown-link,
.dropdown-submenu a {
  display: flex;
  min-height: 50px;
  padding: 15px 20px;
  align-items: center;
  color: var(--telcom-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: normal;
  transition: color 0.18s ease, background 0.18s ease;
}

.dropdown-link {
  flex: 1 1 auto;
}

.dropdown-link:hover,
.dropdown-link:focus-visible,
.dropdown-submenu a:hover,
.dropdown-submenu a:focus-visible {
  color: var(--telcom-white);
  background: var(--telcom-orange);
}

.submenu-toggle {
  flex: 0 0 46px;
  width: 46px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 23px;
}

.dropdown-submenu {
  top: -10px;
  left: 100%;
  width: max-content;
  min-width: 260px;
}

.dropdown-submenu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dropdown-submenu a:last-child {
  border-bottom: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 8px;
  color: var(--telcom-white);
  background: var(--telcom-orange);
  cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.contact-strip {
  padding: 14px 0;
  color: var(--telcom-white);
  background: var(--telcom-orange);
}

.contact-strip__inner {
  display: grid;
  width: 100%;
  min-height: 30px;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.contact-strip a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-icon {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 7px;
  margin: 0 7px;
  border-radius: 50%;
  color: var(--telcom-orange);
  background: var(--telcom-white);
  font-family: boxicons;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.blog-hero,
.article-hero,
.archive-hero {
  position: relative;
  overflow: hidden;
  color: var(--telcom-white);
  background:
    radial-gradient(circle at 82% 32%, rgba(255, 110, 0, 0.18), transparent 24%),
    linear-gradient(120deg, var(--telcom-navy-deep) 0%, var(--telcom-navy) 72%, #163661 100%);
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(9, 26, 50, 0.96) 0%, rgba(17, 40, 74, 0.88) 46%, rgba(9, 26, 50, 0.5) 100%),
    url("../images/telecom-hero.webp") center 48% / cover no-repeat;
}

.blog-hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 8px;
  content: "";
  background: var(--telcom-orange);
}

.blog-hero::after,
.article-hero::after,
.archive-hero::after {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 440px;
  height: 440px;
  border: 54px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 48px), var(--telcom-container));
  min-height: 480px;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 70px;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 12px;
  color: var(--telcom-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 3px;
  background: var(--telcom-orange);
}

.eyebrow--dark {
  color: var(--telcom-navy);
}

.blog-hero h1,
.article-hero h1,
.archive-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.blog-hero h1::first-line {
  color: var(--telcom-white);
}

.blog-hero__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.75;
}

.hero-mark {
  position: relative;
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  border: 1px solid rgba(255, 110, 0, 0.5);
  border-radius: 50%;
  content: "";
}

.hero-mark::before {
  inset: 25px;
}

.hero-mark::after {
  inset: 52px;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 82px;
}

.posts-section,
.related-posts {
  width: min(calc(100% - 48px), var(--telcom-container));
  margin-inline: auto;
  padding: 96px 0 110px;
}

.section-heading {
  display: grid;
  margin-bottom: 46px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 60px;
}

.section-heading h2 {
  margin: 0;
  color: var(--telcom-navy);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading > p {
  margin: 0;
  color: var(--telcom-muted);
  font-size: 17px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--telcom-line);
  border-radius: var(--telcom-radius);
  background: var(--telcom-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.post-card:hover {
  border-color: transparent;
  box-shadow: var(--telcom-shadow);
  transform: translateY(-6px);
}

.post-card__media {
  position: relative;
  display: block;
  height: 244px;
  overflow: hidden;
  background: var(--telcom-navy);
}

.post-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__media > img {
  transform: scale(1.04);
}

.post-card__fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 46%, rgba(255, 110, 0, 0.9) 46% 58%, transparent 58%),
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.13), transparent 34%),
    var(--telcom-navy);
}

.post-card__fallback img {
  width: 66px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.post-card__category,
.article-category {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--telcom-white);
  background: var(--telcom-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card__category {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 13px;
}

.post-card__body {
  padding: 27px 28px 30px;
}

.post-meta {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  gap: 9px;
  color: var(--telcom-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-meta > span:empty {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--telcom-orange);
}

.post-card h2,
.post-card h3 {
  margin: 0 0 14px;
  color: var(--telcom-navy);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.post-card h2 a,
.post-card h3 a {
  transition: color 0.2s ease;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
  color: var(--telcom-orange);
}

.post-card__excerpt,
.post-card > .post-card__body > p {
  margin: 0 0 22px;
  color: var(--telcom-muted);
}

.post-card__excerpt p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--telcom-navy);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--telcom-orange);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.pagination {
  margin-top: 50px;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: grid;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--telcom-line);
  border-radius: 8px;
  color: var(--telcom-navy);
  font-weight: 700;
}

.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
  border-color: var(--telcom-orange);
  color: var(--telcom-white);
  background: var(--telcom-orange);
}

.empty-state {
  padding: 70px 32px;
  border: 1px solid var(--telcom-line);
  border-radius: var(--telcom-radius);
  text-align: center;
  background: var(--telcom-soft);
}

.empty-state img {
  width: 66px;
  margin: 0 auto 22px;
}

.empty-state h2 {
  margin: 0 0 10px;
  color: var(--telcom-navy);
  font-size: 30px;
}

.empty-state p {
  margin: 0;
  color: var(--telcom-muted);
}

.expert-cta {
  display: flex;
  width: min(calc(100% - 48px), var(--telcom-container));
  min-height: 280px;
  margin: 0 auto 110px;
  padding: 56px 64px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-radius: 22px;
  color: var(--telcom-white);
  background:
    linear-gradient(115deg, rgba(255, 110, 0, 0.98), rgba(230, 95, 0, 0.95)),
    var(--telcom-orange);
  box-shadow: 0 20px 50px rgba(255, 110, 0, 0.22);
}

.expert-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.expert-cta p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: 17px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--telcom-orange);
  border-radius: 8px;
  color: var(--telcom-white);
  background: var(--telcom-orange);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.button:hover {
  box-shadow: 0 12px 30px rgba(17, 40, 74, 0.18);
  transform: translateY(-2px);
}

.button--light {
  flex: 0 0 auto;
  border-color: var(--telcom-white);
  color: var(--telcom-navy);
  background: var(--telcom-white);
}

.article-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1040px);
  margin-inline: auto;
  padding: 82px 0 96px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 42px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--telcom-orange);
}

.article-category {
  margin-bottom: 24px;
  padding: 8px 14px;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 68px);
}

.article-deck {
  max-width: 830px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 14px;
}

.author-badge img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.article-meta strong {
  display: block;
  font-size: 15px;
}

.article-meta p {
  display: flex;
  margin: 3px 0 0;
  gap: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.article-cover {
  width: min(calc(100% - 48px), 1160px);
  max-height: 680px;
  margin: -36px auto 0;
  overflow: hidden;
  border: 10px solid var(--telcom-white);
  border-radius: 20px;
  background: var(--telcom-soft);
  box-shadow: var(--telcom-shadow);
}

.article-cover img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 82px 0 38px;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 44px;
}

.share-rail {
  position: sticky;
  top: 32px;
  display: flex;
  height: max-content;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.share-rail > span {
  margin-bottom: 3px;
  color: var(--telcom-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.share-rail a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(17, 40, 74, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.share-rail a.share-facebook {
  background: #1877f2;
}

.share-rail a.share-linkedin {
  background: #0a66c2;
}

.share-rail a.share-whatsapp {
  background: #25d366;
}

.share-rail a img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.share-rail a:hover {
  box-shadow: 0 10px 22px rgba(17, 40, 74, 0.2);
  filter: saturate(1.08) brightness(0.96);
  transform: translateY(-2px);
}

.article-content {
  min-width: 0;
  color: #30394a;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.85;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content p {
  margin: 0 0 1.55em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--telcom-navy);
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.article-content h2 {
  margin: 1.65em 0 0.65em;
  font-size: 34px;
}

.article-content h3 {
  margin: 1.55em 0 0.6em;
  font-size: 26px;
}

.article-content a {
  color: var(--telcom-orange-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.45em;
}

.article-content li {
  margin-bottom: 0.6em;
}

.article-content blockquote {
  margin: 2.3em 0;
  padding: 28px 32px;
  border: 0;
  border-left: 5px solid var(--telcom-orange);
  border-radius: 0 12px 12px 0;
  color: var(--telcom-navy);
  background: var(--telcom-soft);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
}

.article-content figure {
  margin: 2.4em 0;
}

.article-content figcaption {
  margin-top: 10px;
  color: var(--telcom-muted);
  font-size: 13px;
  text-align: center;
}

.article-content img {
  border-radius: 12px;
}

.article-content table {
  display: block;
  width: 100%;
  margin: 2em 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 13px 15px;
  border: 1px solid var(--telcom-line);
  text-align: left;
}

.article-content th {
  color: var(--telcom-white);
  background: var(--telcom-navy);
}

.article-footer {
  display: flex;
  width: min(calc(100% - 48px), 862px);
  margin: 0 auto 92px;
  padding-top: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--telcom-line);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--telcom-muted);
  font-size: 13px;
}

.article-tags > span {
  color: var(--telcom-navy);
  font-weight: 800;
}

.article-tags a {
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--telcom-soft);
}

.related-posts {
  border-top: 1px solid var(--telcom-line);
}

.archive-hero {
  padding: 100px max(24px, calc((100% - var(--telcom-container)) / 2));
}

.archive-hero .eyebrow,
.archive-hero h1,
.archive-description {
  position: relative;
  z-index: 1;
}

.archive-description {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.not-found {
  display: flex;
  min-height: 590px;
  padding: 90px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.not-found__code {
  margin: 0;
  color: var(--telcom-orange);
  font-size: clamp(90px, 18vw, 180px);
  font-weight: 800;
  line-height: 0.9;
}

.not-found h1 {
  margin: 28px 0 8px;
  color: var(--telcom-navy);
  font-size: 42px;
}

.not-found > p:not(.not-found__code) {
  margin: 0 0 30px;
  color: var(--telcom-muted);
}

.corporate-footer {
  color: #212529;
  font-family: "Raleway Telcom", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.corporate-footer .contenido {
  display: grid;
  padding: 50px 80px;
  background: var(--telcom-orange);
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 40px;
}

.corporate-footer .contenido div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.corporate-footer .logo-footer-main {
  justify-content: center;
}

.corporate-footer .logo-footer-main a,
.corporate-footer .logo-footer-main img {
  width: 100%;
}

.corporate-footer .logo-footer-main img {
  display: inline;
}

.corporate-footer .sub-title-footer {
  margin: 0 0 8px;
  padding: 20px 0;
  color: #000;
  font-size: 28px;
  font-weight: 500;
  line-height: 33.6px;
  text-align: center;
  -webkit-text-stroke: 1px #fff;
}

.corporate-footer .menu-productos-footer ul,
.corporate-footer .menu-servicios-footer ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.corporate-footer .item-footer {
  padding: 5px 0;
  text-align: center;
}

.corporate-footer .link-footer {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-decoration: none;
}

.corporate-footer .social-footer-item {
  list-style: none;
}

.corporate-footer .social-footer-item--whatsapp {
  margin-top: 7px;
}

.corporate-footer .social-media-main img {
  display: inline;
  width: 25px;
  height: 25px;
}

.corporate-footer .contac li {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.corporate-footer .contac li a {
  color: #fff;
  text-decoration: none;
}

.corporate-footer .contac li img {
  display: inline;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: -2px;
}

.corporate-footer .contac li img.landline-icon {
  margin-right: 4px;
}

.corporate-footer .copy {
  display: flex;
  padding: 8px 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--telcom-navy);
  text-align: center;
}

.corporate-footer .copy p {
  margin: 0 0 16px;
}

.corporate-footer .link-foot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-footer .copy img {
  display: block;
  width: 23px;
  height: auto;
  margin-left: 6px;
}

.whatsapp-button {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--telcom-white);
  border-radius: 50%;
  background: #12bb67;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-button img {
  width: 29px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) and (min-width: 901px) {
  .header-main {
    width: 100%;
    min-height: 157px;
    padding: 10px 0 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .brand {
    flex-basis: auto;
    width: 25%;
  }

  .brand img {
    width: 100%;
  }

  .site-nav {
    flex-basis: auto;
    width: 75%;
    gap: 0;
  }

  .site-nav > .nav-item > a,
  .site-nav > .nav-item > .nav-trigger > a {
    padding: 10px 15px;
    font-size: 16px;
  }

  .contact-strip__inner {
    width: 100%;
  }

  .contact-strip a {
    font-size: 16px;
  }
}

@media (max-width: 992px) and (min-width: 901px) {
  .contact-strip {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: var(--telcom-orange);
    box-shadow: none;
  }

  .header-main {
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 10px 30px;
    justify-content: flex-start;
    background: var(--telcom-orange);
  }

  .site-header.is-scrolled .header-main {
    min-height: 52px;
    background: var(--telcom-orange);
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    transform: translate(-50%, -50%);
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 200px;
    content: url("../images/logo-white.png");
  }

  .menu-toggle {
    display: block;
    width: 30px;
    height: 32px;
    padding: 2px 0;
    border-radius: 0;
    background: transparent;
  }

  .site-nav {
    position: absolute;
    z-index: 101;
    top: 52px;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 0;
    max-height: calc(100vh - 52px);
    padding: 8px 30px 18px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    visibility: hidden;
    background: var(--telcom-orange);
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s ease;
  }

  .site-nav > .nav-item.has-dropdown > .nav-trigger > a {
    padding-right: 6px;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-item {
    width: 100%;
  }

  .nav-trigger {
    width: 100%;
  }

  .site-nav > .nav-item > a,
  .site-nav > .nav-item > .nav-trigger > a {
    display: flex;
    flex: 1 1 auto;
    min-height: 50px;
    padding: 15px 6px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--telcom-white);
    font-size: 16px;
  }

  .site-nav > .nav-item > a::after,
  .site-nav > .nav-item > .nav-trigger > a::after {
    display: none;
  }

  .dropdown-toggle {
    position: static;
    display: grid;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--telcom-white);
    font-size: 20px;
  }

  .dropdown-menu,
  .dropdown-submenu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    visibility: hidden;
    border-top: 0;
    background: rgba(13, 36, 69, 0.96);
    box-shadow: none;
    opacity: 0;
    transform: none;
  }

  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu,
  .dropdown-entry.has-children:hover > .dropdown-submenu,
  .dropdown-entry.has-children:focus-within > .dropdown-submenu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  .has-dropdown.is-open > .dropdown-menu,
  .dropdown-entry.has-children.is-open > .dropdown-submenu {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .dropdown-link,
  .dropdown-submenu a {
    min-height: 44px;
    padding: 11px 16px 11px 22px;
    font-size: 12px;
  }

  .dropdown-submenu a {
    padding-left: 36px;
    background: rgba(0, 0, 0, 0.13);
  }

  .submenu-toggle {
    flex-basis: 48px;
    width: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dropdown-entry.is-open > .dropdown-row .submenu-toggle {
    transform: rotate(90deg);
  }

  .contact-strip__inner {
    display: none;
  }

  .contact-strip {
    display: none;
  }

  .contact-icon {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
  }

  .blog-hero__inner {
    min-height: 440px;
    grid-template-columns: 1fr;
  }

  .hero-mark {
    position: absolute;
    right: -70px;
    width: 230px;
    height: 230px;
    opacity: 0.36;
  }

  .blog-hero__inner > div:first-child {
    position: relative;
    z-index: 2;
  }

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

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-main > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .blog-hero__inner,
  .posts-section,
  .expert-cta,
  .article-hero__inner,
  .article-cover,
  .article-layout,
  .article-footer,
  .related-posts,
  .footer-main,
  .footer-bottom {
    width: min(calc(100% - 32px), var(--telcom-container));
  }

  .blog-hero__inner {
    min-height: 420px;
  }

  .blog-hero h1,
  .article-hero h1,
  .archive-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .blog-hero__lead,
  .article-deck {
    font-size: 17px;
  }

  .posts-section,
  .related-posts {
    padding: 72px 0 80px;
  }

  .section-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .post-card__media {
    height: 230px;
  }

  .expert-cta {
    margin-bottom: 80px;
    padding: 42px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero__inner {
    padding: 62px 0 75px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .article-cover {
    margin-top: -24px;
    border-width: 6px;
  }

  .article-layout {
    padding-top: 60px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .share-rail {
    position: static;
    align-items: center;
    flex-direction: row;
  }

  .share-rail > span {
    margin: 0 5px 0 0;
    writing-mode: initial;
    transform: none;
  }

  .article-content {
    font-size: 17px;
  }

  .article-content h2 {
    font-size: 29px;
  }

  .article-footer {
    margin-bottom: 70px;
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-hero {
    padding: 70px 16px;
  }

  .footer-main {
    padding: 54px 0 42px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 460px) {
  .header-main {
    min-height: 52px;
    padding-inline: 20px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 180px;
  }

  .menu-toggle {
    width: 28px;
    height: 32px;
  }

  .site-nav {
    top: 52px;
    padding-inline: 20px;
  }

  .blog-hero__inner {
    min-height: 390px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .post-card__body {
    padding: 24px 22px 26px;
  }

  .article-meta p {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .article-meta p span:first-of-type {
    display: none;
  }

  .article-content blockquote {
    padding: 22px;
    font-size: 19px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 992px) {
  .corporate-footer .contenido {
    padding: 40px 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .corporate-footer .contenido {
    padding: 30px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .corporate-footer .sub-title-footer {
    font-size: 20px;
  }

  .corporate-footer .link-footer,
  .corporate-footer .contac li a {
    font-size: 16px;
  }
}
