/*
 * CAECE – First Aid Steps block (front-end + editor)
 */

.caece-firstaid{
  position:relative;
  padding: clamp(56px, 6vw, 92px) 0;
  background-color: #ef3f24;
  background-image: var(--caece-firstaid-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow:hidden;
}

.caece-firstaid::before,
.caece-firstaid::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.caece-firstaid::before{
  /* Primary brand gradient overlay */
  background: linear-gradient(90deg,
    rgba(239,63,35,.92) 0%,
    rgba(252,176,23,.88) 55%,
    rgba(254,212,1,.82) 100%
  );
}

.caece-firstaid::after{
  /* Secondary subtle shading (multi-layer feel) */
  background: linear-gradient(180deg,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,0) 60%
  );
  mix-blend-mode: multiply;
}

.caece-firstaid__inner{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

.caece-firstaid__header{
  text-align:center;
}

.caece-firstaid .caece-firstaid__title{
  margin:0;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
  color: #fff;
}

.caece-firstaid .caece-firstaid__subtitle{
  margin: 8px 0 0;
  font-size: clamp(18px, 3vw, 34px);
  line-height: 1.1;
  font-style: italic;
  font-weight: 200;
  color: rgba(255,255,255,.86);
}

.caece-firstaid__cards{
  margin-top: clamp(28px, 4vw, 52px);
  display:flex;
  align-items: stretch;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.caece-firstaid__card{
  background:#fff;
  border-radius: 28px;
  width: min(430px, 100%);
  padding: 34px 34px 28px;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  text-align:left;
  display:flex;
  flex-direction: column;
}

.caece-firstaid__icon{
  margin: 0 0 16px;
  height: 78px;
}

.caece-firstaid__icon img{
  height: 78px;
  width: auto;
  display:block;
}

.caece-firstaid .caece-firstaid__step-title{
  margin:0 0 10px;
  font-size: 28px;
  line-height: 1.12;
  font-style: italic;
  font-weight: 800;
  color: var(--caece-charcoal, #414042);
}

.caece-firstaid .caece-firstaid__step-text{
  margin:0 0 18px;
  font-size: 16px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 300;
  color: rgba(65,64,66,.78);
  max-width: 320px;
}

.caece-firstaid .caece-firstaid__button{
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .2px;
  font-style: italic;
  font-weight: 800;
  border: 0;
  white-space: nowrap;
}

.caece-firstaid .caece-firstaid__button--red{
  background: var(--caece-red, #EF3F23);
  color:#fff;
}

.caece-firstaid .caece-firstaid__button--yellow{
  background: var(--caece-yellow, #FED401);
  color: var(--caece-charcoal, #414042);
}

.caece-firstaid .caece-firstaid__button--red:hover,
.caece-firstaid .caece-firstaid__button--yellow:hover{
  filter: brightness(1.03);
}

@media (max-width: 700px){
  .caece-firstaid__card{ padding: 28px 22px 22px; }
  .caece-firstaid .caece-firstaid__step-title{ font-size: 24px; }
}
