*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#0f172a;
  color:white;
}

.hero{
  text-align:center;
  padding:70px 20px;
}

.hero h1{
  font-size:48px;
  margin-bottom:15px;
}

.hero p{
  color:#cbd5e1;
  font-size:18px;
}

.card-wrapper{
  width:90%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  padding-bottom:60px;
}

.press-card{
  background:#1e293b;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:white;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.08);
}

.press-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.image-box{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  /*padding:2px;*/
  overflow:hidden;
}

.image-box img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:0.5s;
}

.press-card:hover img{
  transform:scale(1.05);
}

.content{
  padding:25px;
}

.website-name{
  color:#38bdf8;
  font-size:14px;
  font-weight:bold;
}

.content h2{
  margin:15px 0;
  line-height:1.4;
  font-size:24px;
}

.content p{
  color:#cbd5e1;
  line-height:1.6;
  margin-bottom:20px;
}

button{
  background:#38bdf8;
  border:none;
  padding:12px 22px;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  background:#0ea5e9;
}

.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin:50px 0;
  flex-wrap:wrap;
}

.page-btn{
  min-width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1e293b;
  color:#fff;
  text-decoration:none;
  border-radius:12px;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.08);
}

.page-btn:hover{
  background:#38bdf8;
  transform:translateY(-3px);
}

.page-btn.active{
  background:#38bdf8;
  font-weight:bold;
}

@media(max-width:768px){

.hero h1{
  font-size:34px;
}

.content h2{
  font-size:20px;
}

}