/* =========================================================
   BICROMA – BLOG SEKCE (HOMEPAGE) – FINAL LIGHT VERSION
========================================================= */

#bicromaArticles{
  max-width:1180px;
  margin:0 auto 60px;
  padding:0 16px;
  box-sizing:border-box;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

/* HEAD */
.bicroma-articles-head{
  width:100%;
  text-align:center;
  margin-bottom:30px;
}

.bicroma-articles-kicker{
  display:block;
  color:#FF0000;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.bicroma-articles-title{
  margin:0;
  color:#c9aa78;
  font-size:28px;
  line-height:1.25;
  font-weight:700;
}

/* CARD */
.bicroma-card{
  flex:1;
  min-width:220px;
  max-width:calc(25% - 14px);

  display:flex;
  flex-direction:column;

  border:1px solid #FF0000; /* tenčí */
  border-radius:22px;
  overflow:hidden;
  background:#fff;

  /* jemnější stín */
  box-shadow:0 6px 16px rgba(255,0,0,.12);

  transition:all .2s ease;
}

.bicroma-card:hover{
  transform:translateY(-4px);

  /* jemnější hover */
  box-shadow:0 10px 24px rgba(255,0,0,.18);

  border-color:#FF0000;
}

/* IMAGE */
.bicroma-card__img{
  height:180px;
  background:#fff;
}

.bicroma-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* BODY */
.bicroma-card__body{
  padding:16px;
  display:flex;
  flex-direction:column;
  height:100%;
}

/* TEXT */
.bicroma-card__title{
  margin:0 0 8px;
  color:#c9aa78;
  font-weight:700;
  font-size:16px;
}

.bicroma-card__text{
  margin:0 0 12px;
  color:#6b5b57;
  font-size:14px;
}

/* CTA */
.bicroma-card__cta{
  margin-top:auto;
  color:#FF0000;
  font-weight:500; /* tenčí */
  font-size:14px;
  text-decoration:none;
  letter-spacing:.03em;
}

/* TABLET */
@media (max-width:1024px){
  .bicroma-card{
    max-width:calc(50% - 9px);
  }
}

/* MOBILE */
@media (max-width:640px){
  #bicromaArticles{
    display:block;
  }

  .bicroma-card{
    max-width:100%;
    margin-bottom:20px;
  }
}