/* ================= MAIN CONTENT STYLE ================= */

main {
  background: transparent;
}

/* Card / paper efekat */
.article-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 3rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* Naslov */
.article-card h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1f2937;
  position: relative;
  padding-left: 1.2rem;
}

.article-card h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  height: 2rem;
  width: 4px;
  background: linear-gradient(
    to bottom,
    #d6cbb8,
    #b8a98f
  );
  border-radius: 2px;
}

/* Podnaslov / separator */
.article-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Tekst */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #374151;
}

/* Paragrafi */
.article-content p {
  margin-bottom: 1.6rem;
  text-align: justify;
}

/* Elegantni prvi inicijal */
.article-content p:first-of-type::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  margin-right: 0.5rem;
  color: #8b7b62;
}

/* Responsivnost */
@media (max-width: 768px) {
  .article-card {
    padding: 1rem;
  }

  .article-card h1 {
    font-size: 1.4rem;
  }
  
   .article-content p {
    text-align: left; /* ukida rupe između reči */
    margin-bottom: 1.2rem;
    word-spacing: normal;
    letter-spacing: normal;
  }

  /* Prvi inicijal – manji na mobilnom */
  .article-content p:first-of-type::first-letter {
    font-size: 1.6rem;
    margin-right: 0.1rem;
  }
}