.section--noutati .section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section--noutati .section__label {
  font-family: var(--font-body);
  font-size: 10px;
  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: 24px;
  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: 14px;
  left: 14px;
  top: auto;
  background: #0a1628;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
}

.noutati-featured__body {
  padding: 16px 0 0;
}

.noutati-featured__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: #0a1628;
  margin: 10px 0 8px;
}

.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: 11px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.noutati-featured__excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.noutati-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.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: 10px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: #cc0001;
  border-radius: 0;
}

.noutati-small-grid .post-card--small .post-card__body {
  padding: 10px 0 0;
}

.noutati-small-grid .post-card--small .badge {
  display: block;
  background: none;
  color: #cc0001;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 5px;
  border-radius: 0;
}

.noutati-small-grid .post-card--small .post-card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  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: 10px;
  color: #9ca3af;
  margin-top: 5px;
}

.section--noutati .section__footer {
  margin-top: 28px;
  text-align: center;
}

.section--noutati .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #0a1628;
  color: #0a1628;
  background: transparent;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 28px;
  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;
  }
}
