.cikk-cim {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.cikk-cim span:first-child {
  display: block;
  width: 100%;

  font-size: 1.5rem;
  font-weight: 900;
  color: #7a3f00;

  padding-bottom: 8px;
  border-bottom: 3px solid #b56a1e;

  letter-spacing: 0.3px;
}

.cikk-datum {
  align-self: flex-end;
  margin-top: 6px;

  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  opacity: 0.85;
}




  /* SZÖVEG */
  .text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* GOMB */
  .cikk-gomb {
    display: block;
 width: fit-content;
    padding: 8px 14px;
    border-radius: 8px;

    font-size: 0.9rem;
    font-weight: 600;

    color: #7a3f00;
    background: #fff;

    border: 2px solid #b56a1e;

    text-decoration: none;

    transition: all 0.2s ease;
    margin-left: auto;
  }

  .cikk-gomb:hover {
    background: #b56a1e;
    color: #fff;
  }

  .cikk-gomb:active {
    transform: scale(0.97);
  }










/* GOMB */
.cikk-read-more-btn {
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 15px auto 0 auto;
  padding: 10px 16px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #ff8a00, #ffb347);
  color: white !important;
  font-weight: bold;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: box-shadow 0.25s ease, filter 0.25s ease;
  font-family: Arial, Helvetica, sans-serif;
}

.cikk-read-more-arrow {
  transition: transform 0.25s ease;
}

.cikk-read-more-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.cikk-read-more-btn:hover .cikk-read-more-arrow {
  transform: translateX(6px);
}

/* MOBILE */
@media (max-width: 600px) {
  .cikk-cim {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    text-align: left;
  }

  .cikk-datum {
    font-size: 13px;
    opacity: 0.85;
  }

  .cikk-read-more-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 14px;
  }
}