/* Wrapper */
.itip-wrap{
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  padding: 0 0px;
}

/* Card */
.itip-card {
    width: 280px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.itip-img img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;	
}

.itip-noimg{
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #555;
  font-size: 14px;
}

.itip-content{
  padding: 18px 18px 22px;
}

.itip-title {
    margin: 10px 0 10px;
    color: #0f172a;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.2;
	font-weight: 700;
}

.itip-desc{
  margin: 0 0 16px;
  color: #222;
  font-size: 14px;
  line-height: 1.6;
}

.itip-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: #00c6a7;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.itip-btn:hover{
  opacity: .92;
}

.itip-empty{
  width: 100%;
  text-align: center;
  color: #444;
}

/* Single layout */
.itip-single{
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 40px;
  padding: 0 16px;
}

.itip-single-left{
  flex: 0 0 420px;
}

.itip-single-left img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.itip-noimg-single{
  height: 320px;
  border-radius: 16px;
}

.itip-single-right{
  flex: 1;
}

.itip-single-title{
  color: #d81f1f;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.15;
}

@media (max-width: 900px){
  .itip-single{flex-direction: column;}
  .itip-single-left{flex: 0 0 auto;}
}
