/* Certyfikaty – Elementor Widget */
.certyfikaty-docs{
  --blue:#1D344A;
  --orange:#E63323;
  max-width:1200px;
  margin:0 auto;
  padding:20px 0 10px;
}

/* Grid */
.certyfikaty-docs__grid{
  display:grid;
  grid-template-columns:repeat(var(--cols, 3), minmax(0,1fr));
  gap:14px 20px;
}

/* Element */
.certyfikaty-doc{
  text-decoration:none !important;
  background:#fff;
  border:1px solid rgba(29,52,74,.10);
  border-radius:14px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  transition:all .15s ease;
}

.certyfikaty-doc:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
  border-color:rgba(230,51,35,.3);
}

/* Lewa strona */
.certyfikaty-doc__left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.certyfikaty-doc__icon{
  width:36px;
  height:36px;
  border-radius:999px;
  background:rgba(29,52,74,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  font-size:16px;
  overflow:hidden;
}
.certyfikaty-doc__icon--image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.certyfikaty-doc__meta{
  min-width:0;
}

.certyfikaty-doc__name{
  color:var(--blue);
  font-weight:800;
  font-size:13.5px;
  line-height:1.2;
}

.certyfikaty-doc__desc{
  margin-top:3px;
  color:rgba(29,52,74,.7);
  font-weight:600;
  font-size:12px;
}

/* Przycisk */
.certyfikaty-doc__btn{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 11px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  font-weight:900;
  font-size:11.5px;
  box-shadow:0 8px 18px rgba(230,51,35,.18);
  white-space:nowrap;
}

/* RESPONSIVE */
@media (max-width:1000px){
  .certyfikaty-docs__grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){
  .certyfikaty-docs__grid{
    grid-template-columns:1fr;
  }
}
