* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --header: #005e93;

  --hover: #ffffff22;

  --text: #fff;

  --max-width: 1500px;

  --font-ui: "Manrope", sans-serif;

  --font-editorial: "Source Serif 4", Georgia, serif;
}

body {
  font-family: var(--font-ui);

  text-rendering: optimizeLegibility;

  -webkit-font-smoothing: antialiased;
}

.desktop-header {
  background: var(--header);

  height: 80px;

  position: sticky;

  top: 0;

  z-index: 1000;
}

.container {
  max-width: var(--max-width);

  height: 100%;

  margin: auto;

  padding: 0 28px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.menu-btn {
  width: 46px;

  height: 46px;

  border: none;

  background: none;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 5px;

  cursor: pointer;

  margin-right: 20px;
}

.menu-btn span {
  width: 22px;

  height: 2px;

  background: #fff;

  border-radius: 5px;
}

.logo {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  color: #fff;

  line-height: 1;

  font-family: var(--font-ui);

  margin-right: 42px;
}

.logo-top {
  font-size: 17px;

  font-weight: 800;

  letter-spacing: 0.8px;

  margin-bottom: 2px;
}

.logo-bottom {
  font-size: 27px;

  font-weight: 700;

  letter-spacing: -0.04em;

  white-space: nowrap;
}

.logo-top {
  font-size: 17px;

  font-weight: 800;

  letter-spacing: 1px;
}

.logo-bottom {
  margin-top: 2px;

  font-size: 28px;

  font-weight: 700;
}

.nav {
  flex: 1;
}

.nav ul {
  display: flex;

  list-style: none;

  align-items: center;

  gap: 34px;
}

.nav a {
  text-decoration: none;

  color: white;

  font-size: 16px;

  font-weight: 600;

  font-family: var(--font-ui);

  letter-spacing: -0.02em;

  transition: 0.25s;

  white-space: nowrap;
}

.nav a:hover {
  opacity: 0.75;
}

.actions {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-left: 30px;
}

.signin {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #fff;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  font-family: var(--font-ui);

  letter-spacing: -0.02em;

  white-space: nowrap;
}

.signin span {
  white-space: nowrap;
}

.signin svg {
  width: 22px;

  height: 22px;

  fill: white;
}

.search-btn {
  width: 42px;

  height: 42px;

  border: none;

  background: none;

  cursor: pointer;
}

.search-btn svg {
  width: 22px;

  height: 22px;

  fill: white;
}

button:hover,
.signin:hover {
  background: var(--hover);

  border-radius: 8px;
}

.nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 12px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: #eef5fb;
  color: #1f2937;
  outline: none;
}

.nav a:active {
  background: #dfeaf5;
}

.article-section {
  position: relative;

  margin-top: 42px;
}

.article-container {
  max-width: 1440px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 820px 1fr;

  column-gap: 110px;

  padding: 0 70px;
}

.article-content {
  max-width: 820px;
}

.article-category {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 15px;

  font-weight: 700;

  color: #005f9e;
}

.article-title {
  margin: 0;

  font-size: 62px;

  line-height: 1.08;

  font-weight: 800;

  letter-spacing: -1.8px;

  color: #1d2d44;
}

.article-author {
  margin-top: 28px;

  font-size: 20px;

  font-family: var(--font-ui);

  font-weight: 500;

  color: #222;
}

.article-author a {
  color: #102742;

  font-weight: 700;

  text-decoration: underline;
}

.article-date {
  margin-top: 16px;

  font-size: 18px;

  font-family: var(--font-ui);

  letter-spacing: -0.01em;

  color: #555;
}

.article-ad {
  padding-top: 20px;

  font-size: 12px;

  color: #5f6368;

  text-transform: uppercase;

  height: 600px;

  background-image: url(adver-img.png);
  background-size: cover;
  background-position: center;
}

.social-sidebar {
  position: fixed;

  left: 0;

  top: 280px;

  width: 52px;

  background: #005f9e;

  border-radius: 0 4px 4px 0;

  overflow: hidden;

  z-index: 20;
}

.social-sidebar a {
  display: flex;

  justify-content: center;

  align-items: center;

  width: 52px;

  height: 52px;

  color: #fff;

  text-decoration: none;

  font-size: 24px;

  transition: 0.2s;
}

.social-sidebar svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-sidebar a:hover {
  background: #0b75ba;
}

.article-image-wrapper {
  margin-top: 34px;

  max-width: 930px;
}

.article-image-placeholder {
  width: 100%;

  aspect-ratio: 16 / 9;

  background: url(image.png);
}

.article-image-caption {
  margin-top: 14px;

  font-size: 14px;

  line-height: 1.45;

  font-family: var(--font-ui);

  color: #4b5563;

  max-width: 930px;
}

.article-body {
  max-width: 680px;

  margin: 60px auto 0;
}

.article-body p {
  margin: 0 0 34px;

  font-size: 18px;

  line-height: 1.66;

  font-weight: 400;

  font-family: var(--font-editorial);

  letter-spacing: -0.01em;

  color: #1f2937;
}

.related-stories {
  width: 100%;

  max-width: 930px;

  margin: 70px 0 0;

  padding: 22px 26px;

  background: #eaf4fc;

  border-left: 4px solid #005fa3;
}

.related-stories h3 {
  margin: 0 0 18px;

  font-size: 34px;

  font-weight: 700;

  font-family: var(--font-ui);

  letter-spacing: -0.03em;

  color: #005fa3;
}

.related-story {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  text-decoration: none;

  color: #111827;

  font-size: 22px;

  font-weight: 700;

  line-height: 1.4;

  font-family: var(--font-editorial);

  transition: color 0.2s ease;
}

.related-story:hover {
  color: #005fa3;
}

.cta-box {
  max-width: 930px;

  margin: 70px 0;
}

.comments-section {
  max-width: 874px;

  margin: 88px 0 0;
}

.comments-header-block {
  margin-bottom: 18px;
}

.comments-kicker-wrap {
  padding-bottom: 11px;

  border-bottom: 1px solid #161616;
}

.comments-kicker {
  margin: 0;

  font-size: 21px;

  line-height: 1.1;

  font-weight: 800;

  font-family: var(--font-ui);

  letter-spacing: 0.04em;

  color: #101010;
}

.comment-compose {
  display: flex;

  align-items: center;

  gap: 14px;

  margin: 31px 0 38px;

  padding: 0 12px;
}

.comment-compose-avatar,
.comment-avatar {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #f2f2f2;

  color: #d8d8d8;

  font-size: 28px;

  font-weight: 700;
}

.comment-compose-box {
  flex: 1;

  min-height: 64px;

  border: 0;

  border-radius: 6px;

  background: #f5f5f5;

  color: #767676;

  text-align: left;

  padding: 0 28px;

  font-family: inherit;

  font-size: 18px;

  font-weight: 500;

  cursor: pointer;
}

.comments-toolbar {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 16px;

  border-bottom: 1px solid #e4e4e4;
}

.comments-tab {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 0 22px 12px 20px;

  border-bottom: 4px solid transparent;

  color: #121212;

  font-size: 16px;

  font-weight: 700;
}

.comments-tab.is-active {
  border-bottom-color: #295dcc;
}

.comments-count {
  min-width: 26px;

  height: 24px;

  border-radius: 6px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #ededed;

  color: #6b7280;

  font-size: 15px;

  font-weight: 700;
}

.comments-toolbar-actions {
  display: flex;

  align-items: center;

  gap: 18px;
}

.comments-sort,
.comments-alert {
  border: 0;

  background: transparent;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  color: #2f58c8;

  font-family: inherit;

  font-size: 16px;

  font-weight: 500;

  cursor: pointer;
}

.comments-sort svg,
.comments-alert svg {
  width: 16px;

  height: 16px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.comments-alert {
  color: #111;
}

.comments-alert svg {
  width: 18px;

  height: 18px;

  fill: currentColor;

  stroke: none;
}

.comments-list {
  display: flex;

  flex-direction: column;
}

.comment-item {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 34px 0;

  border-bottom: 1px solid #d8d8d8;
}

.comment-item:last-child {
  padding-bottom: 0;

  border-bottom: none;
}

.comment-body {
  flex: 1;
}

.comment-meta-row {
  margin-bottom: 10px;
}

.comment-author {
  margin: 0 0 2px;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  font-size: 19px;

  line-height: 1.25;

  font-weight: 700;

  font-family: var(--font-ui);

  color: #222;
}

.comment-badge {
  width: 16px;

  height: 16px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: #d0a10c;
}

.comment-badge svg {
  width: 16px;

  height: 16px;

  fill: currentColor;
}

.comment-date {
  margin: 0;

  font-size: 16px;

  line-height: 1.45;

  font-weight: 400;

  color: #6f6f6f;
}

.comment-text {
  margin: 0 0 14px;

  font-size: 18px;

  line-height: 1.55;

  font-weight: 400;

  font-family: var(--font-editorial);

  color: #2f2f2f;
}

.comment-reactions {
  display: flex;

  align-items: center;

  gap: 28px;
}

.reaction-btn {
  border: 0;

  background: transparent;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 0;

  color: #4a4a4a;

  font-family: inherit;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;
}

.reaction-btn svg {
  width: 19px;

  height: 19px;

  fill: currentColor;
}

.cta-live {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  height: 72px;

  border: 1px solid #e8c400;

  border-radius: 8px;

  background: #fff9d8;

  font-size: 18px;

  color: #333;
}

.live-dot {
  width: 16px;

  height: 16px;

  border-radius: 50%;

  background: #e32626;

  box-shadow: 0 0 12px rgba(227, 38, 38, 0.45);

  animation: pulse 1.6s infinite;
}

.cta-live strong {
  color: #c00000;

  font-weight: 700;
}

.cta-title {
  margin: 42px 0 26px;

  font-size: 46px;

  font-weight: 700;

  font-family: var(--font-ui);

  letter-spacing: -0.04em;

  color: #222;
}

.cta-list {
  margin: 0;

  padding-left: 34px;
}

.cta-list li {
  margin-bottom: 34px;

  font-size: 22px;

  line-height: 1.6;

  font-family: var(--font-editorial);

  color: #333;
}

.cta-list a {
  color: #0a67d8;

  font-weight: 600;
}

.cta-button {
  display: flex;

  justify-content: center;

  align-items: center;

  margin-top: 40px;

  height: 72px;

  background: #2d7df4;

  color: #fff;

  text-decoration: none;

  font-size: 24px;

  font-weight: 600;

  font-family: var(--font-ui);

  letter-spacing: 0.03em;

  border-radius: 2px;

  transition: 0.2s;
}

.cta-button:hover {
  background: #176be6;
}

.story-title {
  margin: 0 0 28px;

  font-size: 56px;

  line-height: 1.04;

  font-weight: 800;

  font-family: var(--font-editorial);

  color: #111827;

  letter-spacing: -0.04em;
}

.story-section-title {
  margin: 56px 0 20px;

  font-family: var(--font-ui);

  font-size: 24px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: 0.08em;

  color: #0f2742;
}

.story-image {
  width: 100%;

  margin-bottom: 18px;
}

.story-image-placeholder {
  width: 100%;

  aspect-ratio: 16/9;

  background: url(img-1.png) center/cover no-repeat;
}

.story-image-placeholder-2 {
  width: 100%;

  aspect-ratio: 16/9;

  background: url(img-2.png) center/cover no-repeat;
}

.story-image-placeholder-3 {
  width: 100%;

  aspect-ratio: 16/9;

  background: url(img-3.png) center/cover no-repeat;
}

.story-image-placeholder-4 {
  width: 100%;

  aspect-ratio: 16/9;

  background: url(img-4.png) center/cover no-repeat;
}

.story-content {
  max-width: 760px;
}

.story-content p {
  margin: 0 0 28px;

  font-size: 21px;

  line-height: 1.75;

  font-family: var(--font-editorial);

  letter-spacing: -0.01em;

  color: #222;

  font-weight: 400;
}

.story-content strong {
  font-weight: 700;
}

.footer {
  width: 100%;

  height: 48px;

  background: #000;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-top: 80px;
}

.mobile-menu {
  position: fixed;

  top: 72px;

  left: 0;

  width: 100%;

  height: calc(100vh - 72px);

  background: #fff;

  overflow-y: auto;

  transform: translateX(-100%);

  transition: 0.28s ease;

  z-index: 999;
}

.mobile-signin {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin: 24px;

  padding: 10px 16px;

  border: 1px solid #d8d8d8;

  border-radius: 3px;

  text-decoration: none;

  color: #222;

  font-size: 20px;

  font-weight: 600;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;

  flex-direction: column;
}

.mobile-menu nav a {
  padding: 18px 24px;

  color: #1f2937;

  text-decoration: none;

  font-size: 24px;

  font-weight: 600;

  border-bottom: 1px solid #ececec;
}

.footer p {
  margin: 0;

  color: #fff;

  font-size: 14px;

  font-weight: 500;

  letter-spacing: 0.2px;

  line-height: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);

    opacity: 1;
  }

  50% {
    transform: scale(1.15);

    opacity: 0.7;
  }

  100% {
    transform: scale(1);

    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .nav {
    display: none;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {
  .header {
    height: 72px;
  }

  .container {
    position: relative;

    height: 72px;

    padding: 0 18px;
  }

  /* Desktop meni */

  .nav {
    display: none;
  }

  /* Sakrij Sign In */

  .signin {
    display: none;
  }

  /* Hamburger */

  .menu-btn {
    margin: 0;

    width: 40px;

    height: 40px;

    position: absolute;

    left: 18px;

    top: 50%;

    transform: translateY(-50%);
  }

  /* Logo u centru */

  .logo {
    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    margin: 0;
  }

  .logo-top {
    font-size: 15px;
  }

  .logo-bottom {
    font-size: 20px;
  }

  /* Search desno */

  .actions {
    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    margin: 0;

    gap: 0;
  }

  .search-btn {
    width: 40px;

    height: 40px;
  }
}

.mobile-header,
.mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 72px;

    background: #005f96;

    align-items: center;

    justify-content: center;

    z-index: 9999;
  }

  .mobile-logo {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-decoration: none;

    color: #fff;

    line-height: 1;

    font-family: var(--font-ui);
  }

  .mobile-logo-top {
    font-size: 14px;

    font-weight: 800;
  }

  .mobile-logo-bottom {
    font-size: 18px;

    font-weight: 700;
  }

  .mobile-menu-btn {
    position: absolute;

    left: 18px;

    background: none;

    border: 0;

    color: #fff;

    font-size: 30px;

    cursor: pointer;
  }

  .mobile-search-btn {
    position: absolute;

    right: 18px;

    background: none;

    border: 0;

    color: #fff;

    font-size: 28px;

    cursor: pointer;
  }

  .mobile-menu {
    display: block;

    position: fixed;

    top: 72px;

    left: 0;

    width: 100%;

    height: calc(100vh - 72px);

    background: #fff;

    overflow: auto;

    transform: translateX(-100%);

    transition: 0.3s;

    z-index: 9998;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-signin {
    display: inline-block;

    margin: 24px;

    padding: 12px 18px;

    border: 1px solid #d8d8d8;

    text-decoration: none;

    color: #222;

    font-weight: 600;
  }

  .mobile-nav {
    display: flex;

    flex-direction: column;
  }

  .mobile-nav a {
    padding: 18px 24px;

    text-decoration: none;

    color: #2c3445;

    font-size: 22px;

    font-weight: 600;

    font-family: var(--font-ui);

    letter-spacing: -0.02em;
  }
}

/* =========================================
   MOBILE ARTICLE
========================================= */

@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  .article-section {
    margin-top: 20px;
  }

  .article-container {
    display: block;
    padding: 0 16px;
    max-width: 100%;
  }

  .article-content {
    width: 100%;
    max-width: 100%;
  }

  .article-ad {
    display: none;
  }

  .social-sidebar {
    display: none;
  }

  .article-category {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .article-title {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .article-author {
    font-size: 15px;
    margin-top: 18px;
  }

  .article-date {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .article-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .article-image-frame {
    width: 100%;
    padding: 10px;
  }

  .article-image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .article-image-caption {
    font-size: 12px;
    line-height: 1.45;
    margin-top: 10px;
  }

  .article-body {
    width: 100%;
    max-width: 100%;
    margin: 28px 0 0;
  }

  .article-body p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .cta-box {
    width: 100%;
    margin: 50px 0;
  }

  .cta-live {
    height: auto;
    padding: 14px;
    font-size: 15px;
    text-align: center;
  }

  .cta-title {
    font-size: 28px;
    line-height: 1.25;
    margin: 28px 0 20px;
  }

  .cta-list {
    padding-left: 22px;
  }

  .cta-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .cta-button {
    width: 100%;
    height: 56px;
    font-size: 18px;
  }

  .comments-section {
    margin-top: 56px;
    max-width: 100%;
  }

  .comment-compose {
    margin: 24px 0 30px;
    padding: 0;
  }

  .comment-compose-box {
    min-height: 58px;
    padding: 0 20px;
    font-size: 17px;
  }

  .comments-toolbar {
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .comments-tab {
    padding: 0 12px 10px 0;
    font-size: 14px;
  }

  .comments-toolbar-actions {
    margin-left: auto;
    gap: 14px;
  }

  .comments-sort,
  .comments-alert {
    font-size: 14px;
  }

  .comment-item {
    gap: 12px;
    padding: 24px 0;
  }

  .comment-compose-avatar,
  .comment-avatar {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .comment-author {
    font-size: 17px;
  }

  .comment-date {
    font-size: 14px;
  }

  .comment-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .story-title {
    font-size: 38px;
    line-height: 1.08;
  }

  .story-section-title {
    margin: 42px 0 16px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  .story-content p {
    font-size: 19px;
    line-height: 1.72;
  }

  .comment-reactions {
    gap: 18px;
  }

  .reaction-btn {
    font-size: 15px;
  }

  .footer p {
    font-size: 12px;
    text-align: center;
    padding: 0 10px;
  }
}
