/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;

}

/* ── Base ──────────────────────────────────────────── */
html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #333;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

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

ul {
  list-style: none;
}

/* ── Page wrapper ──────────────────────────────────── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* ══════════════════════════════════════════════════════
   TICKER BAR
══════════════════════════════════════════════════════ */
.ticker-bar {
  border-bottom: 1px solid #d2d2d2;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 26px;
}

.ticker-label {
  font-weight: 500;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticker-text {
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #bebebe;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   MAIN HEADER
══════════════════════════════════════════════════════ */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  min-height: 104px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  width: 12px;
  flex-shrink: 0;
  cursor: pointer;
}

.hamburger-line {
  background: #333;
  height: 2px;
  width: 100%;
  border-radius: 5px;
}

.weather-text {
  font-size: 14px;
  color: #cfb8a2;
  white-space: nowrap;
}

.header-center {
  display: flex;
  justify-content: center;
  flex: 1;
}

.logo-header-wrap {
  height: 40px;
  width: 262px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-header-wrap svg {
  width: 99%;
  height: 85%;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.btn-subscribe {
  background: #ebd46b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  height: 31px;
  text-decoration: none;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #004f88;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: #004f88;
  white-space: nowrap;
  height: 31px;
  background: transparent;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   NEGOCIOS BAR
══════════════════════════════════════════════════════ */
.negocios-bar {
  background: #cfb8a2;
  display: flex;
  align-items: center;
  height: 37px;
  padding: 0 40px;
  overflow: hidden;
}

.negocios-logo-wrap {
  height: 23px;
  width: 86px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.negocios-logo-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.negocios-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 72px;
}

.negocios-nav a {
  font-family: 'Bitter', serif;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
}

.negocios-sep {
  background: #e7dbd0;
  height: 14px;
  width: 1px;
  flex-shrink: 0;
}

.negocios-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.bar-sep {
  background: #d9d9d9;
  height: 37px;
  width: 1px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   ARTICLE CONTAINER
══════════════════════════════════════════════════════ */
.main-content {
  flex: 1;
}

.article-wrap {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ══════════════════════════════════════════════════════
   ARTICLE HEADER CARD
══════════════════════════════════════════════════════ */
.article-header {
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 32px;
}

.breadcrumb {
  font-size: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-sep {
  font-weight: 100;
}

.article-title {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  color: #333;
}

.article-subtitle {
  font-family: 'Bitter', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

/* ══════════════════════════════════════════════════════
   AUTHOR SECTION
══════════════════════════════════════════════════════ */
.author-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.el-pais-avatar {
  background: linear-gradient(to bottom, #004f88, #377fb1);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  border: 2px solid #cfb8a2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0 5px;
}

.el-pais-avatar svg {
  width: 82%;
  height: auto;
  display: block;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}

.author-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-date {
  font-size: 12px;
  color: #9b9b9b;
}

.divider {
  background: #bebebe;
  height: 1px;
  width: 100%;
}

.share-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.share-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 146px;
}

.share-label {
  font-size: 12px;
  color: #9b9b9b;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-icons a {
  display: flex;
  align-items: center;
}

.social-icons svg {
  display: block;
}

.comments-count-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #bebebe;
  width: 109px;
  height: 37px;
  font-weight: 600;
  font-size: 12px;
  color: #000;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   PHOTO BLOCKS
══════════════════════════════════════════════════════ */
.photo-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.photo-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-caption {
  font-size: 12px;
  color: #9b9b9b;
}

/* ══════════════════════════════════════════════════════
   ARTICLE BODY
══════════════════════════════════════════════════════ */
.article-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.body-italic {
  font-weight: 300;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════
   PROMO TEXT
══════════════════════════════════════════════════════ */
.promo-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-top: 32px;
}

/* ══════════════════════════════════════════════════════
   REGISTRATION FORM
══════════════════════════════════════════════════════ */
.reg-form {
  background: #06416a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  margin-top: 32px;
}

.reg-form-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  gap: 20px;
}

.form-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  letter-spacing: -0.32px;
  width: 100%;
}

.age-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.age-label {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}

.age-options {
  display: flex;
  gap: 8px;
  width: 100%;
}

.age-btn {
  flex: 1;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #87a5c0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.age-btn.active {
  background: #fcef21;
  border-color: #e2d618;
  color: #333;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-field {
  background: #fff;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid #6a8cf0;
}

.form-field.filled {
  border-color: #27d927;
}

.field-value {
  font-weight: 600;
  font-size: 16px;
  color: #000619;
}

.field-placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #a0a5ad;
}

.phone-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-img {
  height: 18px;
  width: 28px;
  object-fit: cover;
  flex-shrink: 0;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-prefix svg {
  transform: rotate(180deg);
  display: block;
}

.form-notice {
  font-size: 13px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  width: 100%;
}

.submit-btn {
  background: #fcef21;
  height: 60px;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2d618;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   REPORT ERROR
══════════════════════════════════════════════════════ */
.report-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}

.report-row {
  display: flex;
  align-items: center;
  gap: 58px;
  flex-wrap: wrap;
}

.report-question {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

.report-btn {
  background: #fcf417;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  border: none;
}

/* ══════════════════════════════════════════════════════
   TAGS SECTION
══════════════════════════════════════════════════════ */
.tags-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 127px;
  margin-top: 26px;
}

.tags-title {
  font-weight: 600;
  font-size: 14px;
  color: #acacac;
}

.tag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border: 1px solid #bebebe;
  background: transparent;
  height: 28px;
  font-weight: 300;
  font-size: 14px;
  color: #bebebe;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   COMMENTS
══════════════════════════════════════════════════════ */
.comments-plugin {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(45, 57, 76, 0.1);
  padding: 32px 40px;
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.comments-count {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sort-label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #4b4f56;
}

.sort-dropdown {
  background: #f5f6f7;
  border: 1px solid #cdd0d5;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 5px 8px;
  gap: 4px;
  height: 24px;
  cursor: pointer;
}

.sort-dropdown-text {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #4b4f56;
}

.comments-hr {
  border: none;
  border-top: 1px solid rgba(45, 57, 76, 0.1);
}

.comment-input-wrap {
  display: flex;
  flex-direction: column;
}

.comment-input-field {
  background: #fff;
  border: 1px solid rgba(45, 57, 76, 0.1);
  padding: 16px 12px;
  height: 71px;
  display: flex;
  align-items: flex-start;
  margin-bottom: -1px;
}

.comment-input-placeholder {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
}

.comment-post-bar {
  background: #f5f6f7;
  border: 1px solid rgba(45, 57, 76, 0.1);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}

.post-btn {
  background: #a1b3d5;
  padding: 5px 8px;
  border-radius: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.comment-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.comment-avatar {
  width: 48px;
  height: 48px;

  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.comment-author {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #385898;
}

.comment-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #000;
  line-height: 16.3px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.like-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.like-group svg {
  display: block;
}

.like-count {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #90949c;
}

.action-dot {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #000;
}

.action-link {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #4267b2;
  cursor: pointer;
}

.action-time {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #90949c;
}

.load-more-btn {
  background: #a1b3d5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 2px;
  width: 100%;
  max-width: 816px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.fb-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fb-footer svg {
  display: block;
  flex-shrink: 0;
}

.fb-footer-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: #385898;
}

/* ══════════════════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: #004f88;
  min-height: 82px;
  width: 100%;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  align-items: center;
  padding: 0 40px;
  min-height: 82px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  height: 23px;
  width: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav li {
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
}

.footer-social svg {
  display: block;
}

/* ══════════════════════════════════════════════════════
   COPYRIGHT BAR
══════════════════════════════════════════════════════ */
.copyright-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-text {
  font-size: 12px;
  color: #000;
}

.copyright-img {
  height: 40px;
  width: 75px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .main-header,
  .negocios-bar,
  .footer-inner,
  .copyright-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .negocios-nav {
    margin-left: 24px;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .ticker-bar      { padding: 0 10px; }
  .weather-text    { display: none; }
  .btn-login       { display: none; }

  .main-header {
    padding: 12px 16px;
    min-height: 72px;
  }

  .header-center {
    justify-content: start;
    padding-left: 12px;
  }

  .logo-header-wrap {
    width: 100px;
    height: 28px;
  }

  .negocios-bar {
    padding: 0 16px;
  }

  .negocios-nav {
    margin-left: 12px;
    gap: 12px;
    overflow-x: hidden;
  }

  .article-wrap {
    padding: 0 16px;
  }

  .article-header {
    padding: 20px 16px;
    gap: 16px;
  }

  .article-title {
    font-size: 22px;
  }

  .article-subtitle {
    font-size: 16px;
  }

  .form-title {
    font-size: 20px;
  }

  .age-btn {
    font-size: 13px;
  }

  .comments-plugin {
    padding: 20px 16px;
  }

  .footer-inner {
    padding: 20px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    gap: 16px;
  }

  .footer-nav ul {
    gap: 12px;
    flex-direction: column;
  }

  .copyright-bar {
    padding: 12px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .share-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .report-row {
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .age-options {
    flex-wrap: wrap;
  }

  .age-btn {
    flex: 0 0 calc(50% - 4px);
  }
}
