:root{
  --lp53-navy:#071a33;
  --lp53-blue:#315b83;
  --lp53-gold:#bf9638;
  --lp53-gold-light:#ead7a1;
  --lp53-soft:#f4f6f8;
  --lp53-muted:#6d7889;
  --lp53-line:#e1e6eb;
  --lp53-shadow:0 17px 50px rgba(7,26,51,.08)
}

.lp53-hero{
  padding:185px 0 74px;
  background:
    radial-gradient(circle at 86% 16%,rgba(217,187,99,.26),transparent 30%),
    linear-gradient(135deg,#fff,#f5ecd3);
  border-bottom:1px solid #e8dcb9
}

.lp53-hero h1{
  max-width:920px;
  margin:14px 0;
  color:var(--lp53-navy);
  font-family:Poppins,Arial,sans-serif;
  font-size:clamp(48px,6vw,78px);
  line-height:1.03;
  letter-spacing:-.055em
}

.lp53-hero p{
  max-width:760px;
  margin:0;
  color:#637186;
  font-size:18px;
  line-height:1.72
}

.lp53-featured-section{
  padding:68px 0;
  background:#fff
}

.lp53-heading,
.lp53-catalog-heading{
  margin-bottom:24px
}

.lp53-heading h2,
.lp53-catalog-heading h2{
  margin:7px 0 0;
  color:var(--lp53-navy);
  font-family:Poppins,Arial,sans-serif;
  font-size:34px
}

.lp53-featured-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px
}

.lp53-featured-card{
  display:grid;
  grid-template-columns:205px minmax(0,1fr);
  overflow:hidden;
  border:1px solid var(--lp53-line);
  border-radius:21px;
  color:inherit;
  background:#fff;
  text-decoration:none;
  box-shadow:var(--lp53-shadow);
  transition:.2s ease
}

.lp53-featured-card:hover{
  transform:translateY(-4px)
}

.lp53-featured-media{
  min-height:245px;
  background:linear-gradient(145deg,#edf1f4,#f0e4c4)
}

.lp53-featured-media img{
  width:100%;
  height:100%;
  object-fit:cover
}

.lp53-featured-media>span{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:var(--lp53-gold);
  font-size:70px;
  font-weight:900
}

.lp53-featured-content{
  display:flex;
  flex-direction:column;
  padding:23px
}

.lp53-tags{
  display:flex;
  gap:6px;
  flex-wrap:wrap
}

.lp53-tags span{
  padding:5px 8px;
  border-radius:999px;
  color:#71551c;
  background:#f6edd3;
  font-size:9px;
  font-weight:850;
  text-transform:uppercase
}

.lp53-featured-content h3,
.lp53-card-body h3{
  margin:14px 0 8px;
  color:var(--lp53-navy)
}

.lp53-featured-content h3{
  font-size:23px
}

.lp53-featured-content p,
.lp53-card-body p{
  flex:1;
  margin:0;
  color:var(--lp53-muted);
  line-height:1.65
}

.lp53-featured-content b,
.lp53-card-body b{
  display:block;
  margin-top:17px;
  color:var(--lp53-navy)
}

.lp53-catalog-section{
  padding:76px 0;
  background:var(--lp53-soft)
}

.lp53-filters{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr) auto auto;
  gap:10px;
  align-items:end;
  padding:17px;
  margin-bottom:34px;
  border:1px solid var(--lp53-line);
  border-radius:17px;
  background:#fff
}

.lp53-filters label{
  font-size:11px;
  font-weight:800
}

.lp53-filters label>span{
  display:block;
  margin-bottom:6px
}

.lp53-filters input,
.lp53-filters select{
  width:100%;
  min-height:45px;
  padding:0 12px;
  border:1px solid #dfe5ec;
  border-radius:11px;
  background:#fff
}

.lp53-filters button,
.lp53-filters>a{
  min-height:45px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  font-weight:850;
  text-decoration:none
}

.lp53-filters button{
  border:0;
  color:var(--lp53-navy);
  background:linear-gradient(135deg,var(--lp53-gold),var(--lp53-gold-light))
}

.lp53-filters>a{
  color:var(--lp53-blue);
  border:1px solid var(--lp53-line);
  background:#fff
}

.lp53-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}

.lp53-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--lp53-line);
  border-radius:20px;
  color:inherit;
  background:#fff;
  text-decoration:none;
  transition:.2s ease
}

.lp53-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--lp53-shadow)
}

.lp53-card-media{
  height:215px;
  background:linear-gradient(145deg,#edf1f4,#f0e4c4)
}

.lp53-card-media img{
  width:100%;
  height:100%;
  object-fit:cover
}

.lp53-card-media>span{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:var(--lp53-gold);
  font-size:64px;
  font-weight:900
}

.lp53-card-body{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:21px
}

.lp53-card-body h3{
  font-size:21px
}

.lp53-card-meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:16px;
  padding-top:13px;
  border-top:1px solid var(--lp53-line);
  color:#7b8798;
  font-size:10px
}

.lp53-empty{
  padding:50px 25px;
  border:1px dashed #ccd4de;
  border-radius:18px;
  text-align:center;
  background:#fff
}

.lp53-empty h2{
  color:var(--lp53-navy)
}

.lp53-empty p{
  color:var(--lp53-muted)
}

.lp53-empty a{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  margin-top:10px;
  padding:0 18px;
  border-radius:999px;
  color:var(--lp53-navy);
  background:linear-gradient(135deg,var(--lp53-gold),var(--lp53-gold-light));
  font-weight:850;
  text-decoration:none
}

.lp53-detail-hero{
  padding:185px 0 76px;
  color:#fff;
  background:
    radial-gradient(circle at 88% 14%,rgba(217,187,99,.18),transparent 30%),
    linear-gradient(135deg,#0a2849,#153f6a)
}

.lp53-detail-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  align-items:end
}

.lp53-detail-hero h1{
  margin:14px 0;
  font-family:Poppins,Arial,sans-serif;
  font-size:clamp(48px,6vw,78px);
  line-height:1.03;
  letter-spacing:-.055em
}

.lp53-detail-hero p{
  max-width:730px;
  color:rgba(255,255,255,.76);
  font-size:18px;
  line-height:1.7
}

.lp53-detail-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:25px
}

.lp53-primary-button,
.lp53-secondary-button{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:999px;
  font-weight:850;
  text-decoration:none
}

.lp53-primary-button{
  color:var(--lp53-navy);
  background:linear-gradient(135deg,var(--lp53-gold),var(--lp53-gold-light))
}

.lp53-secondary-button{
  color:#fff;
  border:1px solid rgba(255,255,255,.24)
}

.lp53-detail-facts{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px
}

.lp53-detail-facts div{
  padding:15px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:13px;
  background:rgba(255,255,255,.06)
}

.lp53-detail-facts span,
.lp53-detail-facts strong{
  display:block
}

.lp53-detail-facts span{
  color:rgba(255,255,255,.58);
  font-size:9px;
  text-transform:uppercase
}

.lp53-detail-facts strong{
  margin-top:5px
}

.lp53-detail-section{
  padding:76px 0;
  background:#fff
}

.lp53-detail-content{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:45px
}

.lp53-detail-content h2{
  color:var(--lp53-navy);
  font-family:Poppins,Arial,sans-serif;
  font-size:38px
}

.lp53-rich-text{
  color:#56647a;
  font-size:17px;
  line-height:1.85
}

.lp53-detail-content aside{
  display:grid;
  gap:14px
}

.lp53-detail-box{
  padding:22px;
  border:1px solid var(--lp53-line);
  border-radius:17px;
  background:#fff;
  box-shadow:0 10px 35px rgba(7,26,51,.05)
}

.lp53-detail-box h3{
  margin:0 0 12px;
  color:var(--lp53-navy)
}

.lp53-detail-box p{
  color:var(--lp53-muted);
  line-height:1.6
}

.lp53-download-box{
  background:#fbf7ea
}

.lp53-download-box a{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  padding:0 17px;
  border-radius:999px;
  color:var(--lp53-navy);
  background:linear-gradient(135deg,var(--lp53-gold),var(--lp53-gold-light));
  font-weight:850;
  text-decoration:none
}

@media(max-width:1000px){
  .lp53-featured-grid,
  .lp53-grid{
    grid-template-columns:repeat(2,1fr)
  }

  .lp53-filters{
    grid-template-columns:repeat(2,1fr)
  }

  .lp53-detail-grid,
  .lp53-detail-content{
    grid-template-columns:1fr
  }
}

@media(max-width:650px){
  .lp53-hero,
  .lp53-detail-hero{
    padding-top:145px
  }

  .lp53-featured-grid,
  .lp53-grid,
  .lp53-filters{
    grid-template-columns:1fr
  }

  .lp53-featured-card{
    grid-template-columns:1fr
  }

  .lp53-featured-media{
    min-height:210px
  }

  .lp53-detail-actions{
    flex-direction:column
  }
}
