.countries{
  background:#07152b;
  padding:90px 6%;
}

.countries-title{
  text-align:center;
  margin-bottom:45px;
}

.countries-title p{
  color:var(--dorado);
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:10px;
}

.countries-title h2{
  color:white;
  font-size:clamp(30px,4vw,46px);
  max-width:760px;
  margin:0 auto;
  line-height:1.1;
}

.countries-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.country-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:26px 22px;
  color:white;
  transition:.3s;
}

.country-card:hover{
  transform:translateY(-5px);
  border-color:rgba(244,180,0,.28);
}

.country-emoji{
  font-size:52px;
  margin-bottom:18px;
  display:block;
}

.country-card h3{
  font-size:22px;
  margin-bottom:8px;
}

.country-card p{
  font-size:14px;
  line-height:1.5;
  opacity:.75;
}

@media(max-width:900px){
  .countries-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .countries-grid{
    grid-template-columns:1fr;
  }
}