.section--noutati .section__header {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.section--noutati .section__label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cc0001;
  white-space: nowrap;
}

.section--noutati .section__line {
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.noutati-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: var(--space-3);
  align-items: start;
}

.noutati-featured {
  display: flex;
  flex-direction: column;
}

.noutati-featured__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.noutati-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.noutati-featured__thumb:hover img {
  transform: scale(1.02);
}

.noutati-featured__thumb .badge {
  position: absolute;
  bottom: var(--gap-md);
  left: var(--gap-md);
  top: auto;
  background: #0a1628;
  color: #ffffff;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--gap-xs) var(--gap-sm);
  border-radius: 0;
}

.noutati-featured__body {
  padding: var(--gap-md) 0 0;
}

.noutati-featured__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  color: #0a1628;
  margin: var(--gap-sm) 0 var(--gap-sm);
}

.noutati-featured__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.noutati-featured__title a:hover {
  color: #cc0001;
}

.noutati-featured__body .post-meta {
  font-size: var(--fs-nav);
  color: #9ca3af;
  margin-bottom: var(--gap-sm);
}

.noutati-featured__excerpt {
  font-size: var(--fs-sm);
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.noutati-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}

.noutati-small-grid .post-card--small {
  flex-direction: column;
  gap: 0;
}

.noutati-small-grid .post-card--small .post-card__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
  flex-shrink: unset;
}

.noutati-small-grid .post-card--small .post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.noutati-small-grid .post-card--small:hover .post-card__thumb img {
  transform: scale(1.03);
}

.noutati-small-grid .post-card--small .post-card__thumb::after {
  content: '';
  position: absolute;
  top: var(--gap-sm);
  left: var(--gap-sm);
  width: var(--gap-sm);
  height: var(--gap-sm);
  background: #cc0001;
  border-radius: 0;
}

.noutati-small-grid .post-card--small .post-card__body {
  padding: var(--gap-sm) 0 0;
}

.noutati-small-grid .post-card--small .badge {
  display: block;
  background: none;
  color: #cc0001;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: var(--gap-xs);
  border-radius: 0;
}

.noutati-small-grid .post-card--small .post-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: 1.25;
  color: #0a1628;
  margin: 0;
}

.noutati-small-grid .post-card--small .post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.noutati-small-grid .post-card--small .post-card__title a:hover {
  color: #cc0001;
}

.noutati-small-grid .post-card--small .post-meta {
  font-size: var(--fs-label);
  color: #9ca3af;
  margin-top: var(--gap-xs);
}

.section--noutati .section__footer {
  margin-top: var(--gap-xl);
  text-align: center;
}

.section--noutati .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  border: 1.5px solid #0a1628;
  color: #0a1628;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  text-decoration: none;
  border-radius: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

.section--noutati .btn--outline:hover {
  background: #0a1628;
  color: #ffffff;
}

@media (max-width: 900px) {
  .noutati-grid {
    grid-template-columns: 1fr;
  }

  .noutati-small-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .noutati-small-grid {
    grid-template-columns: 1fr;
  }
}
