:root{
  --dst-container-wide: 1440px;
  --dst-container: 1280px;
  --dst-container-reading: 1100px;

  --dst-color-navy: #0f172a;
  --dst-color-gold: #facc15;
  --dst-color-text: #1f2937;
  --dst-color-muted: #6b7280;
  --dst-color-border: #e5e7eb;
  --dst-color-bg: #ffffff;

  --dst-radius-sm: 10px;
  --dst-radius-md: 16px;
  --dst-radius-lg: 24px;

  --dst-shadow-sm: 0 4px 16px rgba(15,23,42,.06);
  --dst-shadow-md: 0 12px 32px rgba(15,23,42,.10);

  --dst-space-1: .25rem;
  --dst-space-2: .5rem;
  --dst-space-3: .75rem;
  --dst-space-4: 1rem;
  --dst-space-5: 1.25rem;
  --dst-space-6: 1.5rem;
  --dst-space-8: 2rem;
  --dst-space-10: 2.5rem;
}

body.dst-theme-ready{
  color: var(--dst-color-text);
  background: var(--dst-color-bg);
}

.dst-container{
  width: min(100% - 32px, var(--dst-container));
  margin-inline: auto;
}
.dst-container-wide{
  width: min(100% - 32px, var(--dst-container-wide));
  margin-inline: auto;
}
.dst-container-reading{
  width: min(100% - 32px, var(--dst-container-reading));
  margin-inline: auto;
}

.dst-zone{margin:0; padding:0;}
.dst-zone-inner{width:min(100% - 32px, var(--dst-container-wide)); margin-inline:auto;}

.dst-page-shell{
  width:100%;
  max-width:100%;
  overflow-x:clip;
}
.dst-page-shell__content,
.dst-page-shell__zone{
  width:100%;
}
.dst-page-shell__content{
  padding-block:40px;
}
.dst-page-shell__content-inner{
  width:min(100% - 32px, var(--dst-container-wide));
  margin-inline:auto;
}
.dst-page-shell__layout,
.dst-page-shell__main{
  width:100%;
  max-width:100%;
  min-width:0;
}
.dst-page-shell__main > .elementor{
  width:100%;
  max-width:100%;
}

.dst-layout{
  display:grid;
  gap:24px;
}
.dst-layout--content-right{
  grid-template-columns:minmax(0,1fr) 320px;
}
.dst-layout--left-content{
  grid-template-columns:280px minmax(0,1fr);
}
.dst-layout--left-content-right{
  grid-template-columns:260px minmax(0,1fr) 320px;
}
.dst-layout--full{
  grid-template-columns:minmax(0,1fr);
}

.dst-sidebar{
  background:#fff;
  border:1px solid var(--dst-color-border);
  border-radius:var(--dst-radius-md);
  padding:20px;
  box-shadow:var(--dst-shadow-sm);
}

@media (max-width: 1279px){
  .dst-layout--content-right,
  .dst-layout--left-content,
  .dst-layout--left-content-right{
    grid-template-columns:minmax(0,1fr);
  }
}

@media (max-width: 1100px){
  .dst-page-shell__content{
    padding-block:34px;
  }
  .dst-page-shell__content-inner{
    width:min(100% - 28px, var(--dst-container-wide));
  }
}

@media (max-width: 1024px){
  .dst-page-shell__content{
    padding-block:30px;
  }
  .dst-page-shell__content-inner{
    width:min(100% - 24px, 100%);
  }
}

@media (max-width: 767px){
  .dst-container,
  .dst-container-wide,
  .dst-container-reading,
  .dst-zone-inner{
    width:min(100% - 20px, 100%);
  }
  .dst-page-shell__content{
    padding-block:24px;
  }
  .dst-page-shell__content-inner{
    width:min(100% - 20px, 100%);
  }
}

html{box-sizing:border-box}
*,*::before,*::after{box-sizing:inherit}
body{margin:0;line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none}
.widget{margin-bottom:20px}
.widget-title{margin:0 0 12px}

.dst-content{min-width:0}
.dst-posts-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}

.dst-post-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.dst-post-card-thumb img{
  width:100%;
  height:auto;
  display:block;
}

.dst-post-card-body{
  padding:20px;
}

.dst-post-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:14px;
  color:#6b7280;
  margin-bottom:12px;
}

.dst-post-card-title{
  font-size:clamp(22px, 2vw, 30px);
  line-height:1.3;
  margin:0 0 12px;
}

.dst-post-card-title a{
  color:#0f172a;
}

.dst-post-card-excerpt{
  color:#4b5563;
  line-height:1.8;
  margin-bottom:16px;
}

.dst-post-card-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
  font-weight:600;
}

.dst-single-title{
  font-size:clamp(30px, 3vw, 46px);
  line-height:1.2;
  margin:0;
  color:#0f172a;
}

.dst-single-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:14px;
  color:#6b7280;
}

.dst-single-thumb img{
  width:100%;
  border-radius:20px;
}

.dst-single-content{
  line-height:1.9;
  color:#374151;
}

.dst-single-content h2,
.dst-single-content h3,
.dst-single-content h4{
  color:#0f172a;
  margin-top:28px;
}

.dst-comments-wrap{
  border-top:1px solid #e5e7eb;
  padding-top:32px;
}

.dst-comments-title{
  margin:0;
  color:#0f172a;
}

.dst-comments-list li{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:18px;
  margin-bottom:16px;
  background:#fff;
}

.dst-comment-form p{
  margin-bottom:16px;
}

.dst-comment-form input[type="text"],
.dst-comment-form input[type="email"],
.dst-comment-form input[type="url"],
.dst-comment-form textarea{
  width:100%;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:12px 14px;
  font:inherit;
}

.dst-comment-submit{
  border:0;
  border-radius:999px;
  padding:12px 20px;
  background:#0f172a;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.dst-search-page{
  --dst-search-navy:#0f172a;
  --dst-search-blue:#153b7a;
  --dst-search-gold:#facc15;
  --dst-search-muted:#64748b;
  --dst-search-border:#dbe5f1;
  --dst-search-soft:#f8fafc;
  padding:clamp(28px,4vw,56px) 0 clamp(42px,6vw,80px);
}
.dst-search-page__hero-card{
  position:relative;
  overflow:visible;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  gap:clamp(22px,4vw,58px);
  align-items:center;
  border:1px solid var(--dst-search-border);
  border-radius:clamp(26px,3vw,42px);
  padding:clamp(28px,5vw,64px);
  background:
    radial-gradient(circle at top left,rgba(250,204,21,.15),transparent 28%),
    linear-gradient(135deg,#fff 0%,#f8fafc 100%);
  box-shadow:0 22px 70px rgba(15,23,42,.08);
}
.dst-search-page__hero-copy{
  position:relative;
  z-index:2;
  min-width:0;
}
.dst-search-page__hero-media{
  position:relative;
  z-index:1;
  margin:0;
  isolation:isolate;
}
.dst-search-page__hero-media::before{
  content:"";
  position:absolute;
  inset:-12%;
  z-index:-1;
  border-radius:999px;
  background:
    radial-gradient(circle at 25% 20%,rgba(250,204,21,.32),transparent 34%),
    radial-gradient(circle at 80% 72%,rgba(21,59,122,.16),transparent 36%);
  filter:blur(4px);
}
.dst-search-page__hero-media img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:600/338;
  object-fit:cover;
  border:1px solid rgba(219,229,241,.96);
  border-radius:34px 90px 34px 90px;
  background:#eef2f7;
  box-shadow:0 22px 56px rgba(15,23,42,.14);
}
.dst-search-page__eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  margin:0 0 16px;
  padding:9px 18px;
  border-radius:999px;
  background:rgba(250,204,21,.16);
  color:#7c5a00;
  font-size:clamp(12px,1vw,14px);
  line-height:1.2;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.dst-search-page__title{
  max-width:980px;
  margin:0;
  color:var(--dst-search-navy);
  font-size:clamp(38px,6vw,88px);
  line-height:.98;
  font-weight:950;
  letter-spacing:-.055em;
}
.dst-search-page__title span{
  display:block;
  color:var(--dst-search-blue);
}
.dst-search-page__summary{
  max-width:780px;
  margin:18px 0 0;
  color:var(--dst-search-muted);
  font-size:clamp(16px,1.45vw,20px);
  line-height:1.75;
  font-weight:650;
}
.dst-search-page__form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px;
  max-width:820px;
  margin:28px 0 0;
}
.dst-search-page__live-search{
  position:relative;
  z-index:28;
  width:100%;
  max-width:820px;
  margin:28px 0 0;
}
.dst-search-page__live-search .dst-explore-blog-search__input{
  min-height:58px;
  border-radius:22px;
  border-color:var(--dst-search-border);
  color:var(--dst-search-navy);
  font-size:17px;
  font-weight:850;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
}
.dst-search-page__live-search .dst-explore-blog-search__input:focus{
  border-color:var(--dst-search-navy);
  box-shadow:0 0 0 6px rgba(250,204,21,.22),0 16px 34px rgba(15,23,42,.08);
}
.dst-search-page__live-search .dst-explore-blog-search__results{
  z-index:34;
  overflow:auto;
  max-height:min(430px,56vh);
  border-color:var(--dst-search-border);
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#fffdf5);
  box-shadow:0 24px 58px rgba(15,23,42,.16);
}
.dst-search-page__live-search .dst-explore-blog-search__link{
  border:1px solid transparent;
}
.dst-search-page__live-search .dst-explore-blog-search__link:hover,
.dst-search-page__live-search .dst-explore-blog-search__link:focus-visible{
  border-color:rgba(250,204,21,.55);
}
.dst-search-page__form input[type="search"]{
  width:100%;
  min-height:58px;
  border:1px solid var(--dst-search-border);
  border-radius:22px;
  padding:0 22px;
  background:#fff;
  color:var(--dst-search-navy);
  font-size:17px;
  font-weight:800;
  line-height:1.2;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
  outline:none;
  -webkit-appearance:none;
  appearance:none;
}
.dst-search-page__form input[type="search"]::placeholder{
  color:#7c8da6;
  opacity:1;
}
.dst-search-page__form input[type="search"]:focus{
  border-color:var(--dst-search-navy);
  box-shadow:0 0 0 6px rgba(250,204,21,.22),0 16px 34px rgba(15,23,42,.08);
}
.dst-search-page__form button,
.dst-search-fallback-card__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  border:0;
  border-radius:999px;
  padding:0 30px;
  background:var(--dst-search-navy);
  color:#fff;
  font-size:16px;
  font-weight:900;
  line-height:1.2;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(15,23,42,.14);
  transition:transform .22s ease,background-color .22s ease,box-shadow .22s ease;
}
.dst-search-page__form button:hover,
.dst-search-page__form button:focus-visible,
.dst-search-fallback-card__cta:hover,
.dst-search-fallback-card__cta:focus-visible{
  transform:translateY(-2px);
  background:#18233a;
  box-shadow:0 20px 42px rgba(15,23,42,.18);
}
.dst-search-page__body{
  margin-top:clamp(26px,4vw,46px);
}
.dst-search-page__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,360px);
  gap:clamp(22px,3vw,36px);
  align-items:start;
}
.dst-search-page__grid--no-sidebar{
  grid-template-columns:minmax(0,1fr);
}
.dst-search-page__cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.dst-search-page__sidebar{
  position:sticky;
  top:110px;
  border-radius:28px;
  padding:22px;
}
.dst-search-page__pagination{
  margin-top:34px;
}
.dst-search-page__pagination .nav-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}
.dst-search-page__pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  border:1px solid var(--dst-search-border);
  border-radius:14px;
  padding:0 13px;
  background:#fff;
  color:var(--dst-search-navy);
  font-weight:900;
  text-decoration:none;
}
.dst-search-page__pagination .page-numbers.current{
  background:var(--dst-search-navy);
  border-color:var(--dst-search-navy);
  color:#fff;
}
.dst-search-page__empty{
  display:grid;
  justify-items:center;
  text-align:center;
  border:1px solid var(--dst-search-border);
  border-radius:32px;
  padding:clamp(28px,5vw,58px);
  background:#fff;
  box-shadow:0 18px 54px rgba(15,23,42,.07);
}
.dst-search-page__empty-copy{
  display:grid;
  justify-items:center;
  max-width:760px;
}
.dst-search-page__empty-icon{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 0 18px;
  border-radius:22px;
  background:rgba(250,204,21,.16);
  color:#7c5a00;
  font-size:38px;
  font-weight:900;
}
.dst-search-page__empty h2{
  margin:0 0 10px;
  color:var(--dst-search-navy);
  font-size:clamp(28px,4vw,48px);
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.04em;
}
.dst-search-page__empty p{
  max-width:680px;
  margin:0;
  color:var(--dst-search-muted);
  font-size:18px;
  line-height:1.7;
  font-weight:650;
}
.dst-search-page__empty-media{
  width:min(100%,680px);
  margin:clamp(22px,4vw,34px) auto 0;
}
.dst-search-page__empty-media img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:800/533;
  object-fit:cover;
  border:1px solid rgba(219,229,241,.96);
  border-radius:34px;
  background:#eef2f7;
  box-shadow:0 20px 48px rgba(15,23,42,.10);
}
.dst-search-page__empty-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  margin-top:clamp(18px,3vw,28px);
  padding:14px 26px;
  border-radius:999px;
  background:var(--dst-search-navy);
  color:#fff;
  font-size:15px;
  font-weight:950;
  line-height:1.2;
  text-decoration:none;
  box-shadow:0 16px 34px rgba(15,23,42,.14);
  transition:transform .22s ease,background-color .22s ease,box-shadow .22s ease;
}
.dst-search-page__empty-cta:hover,
.dst-search-page__empty-cta:focus-visible{
  transform:translateY(-2px);
  background:#facc15;
  color:#0f172a;
  box-shadow:0 18px 38px rgba(234,179,8,.22);
}
.dst-search-page__empty-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.dst-search-page__empty-links a,
.dst-search-fallback-card__badge{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  border:1px solid rgba(250,204,21,.45);
  border-radius:999px;
  padding:0 15px;
  background:rgba(250,204,21,.13);
  color:#6f5200;
  font-size:13px;
  font-weight:900;
  letter-spacing:.05em;
  text-decoration:none;
  text-transform:uppercase;
}
.dst-search-fallback-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid var(--dst-search-border);
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 48px rgba(15,23,42,.07);
}
.dst-search-fallback-card__media{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#e2e8f0;
}
.dst-search-fallback-card__image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.dst-search-fallback-card__body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:22px;
}
.dst-search-fallback-card__badge{
  align-self:flex-start;
  margin-bottom:14px;
}
.dst-search-fallback-card__title{
  margin:0 0 12px;
  font-size:clamp(24px,2vw,32px);
  line-height:1.08;
  font-weight:950;
  letter-spacing:-.035em;
}
.dst-search-fallback-card__title a{
  color:var(--dst-search-navy);
  text-decoration:none;
}
.dst-search-fallback-card__excerpt{
  margin:0 0 20px;
  color:#475569;
  font-size:16px;
  line-height:1.72;
  font-weight:600;
}
.dst-search-fallback-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin:auto 0 20px;
  color:#64748b;
  font-size:14px;
  font-weight:800;
}
.dst-archive-page__hero-card{
  grid-template-columns:minmax(0,1fr);
  overflow:hidden;
}
.dst-archive-page__hero-card::after{
  content:"";
  position:absolute;
  top:-120px;
  right:-110px;
  width:280px;
  height:280px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(250,204,21,.26),transparent 68%);
  pointer-events:none;
}
.dst-archive-page__hero-copy{
  max-width:980px;
}
.dst-archive-page__title{
  max-width:980px;
}
.dst-archive-page__title .vcard,
.dst-archive-page__title a{
  color:inherit;
  text-decoration:none;
}
@media (max-width:1279px){
  .dst-search-page__hero-card{
    grid-template-columns:minmax(0,1fr) minmax(250px,360px);
  }
  .dst-archive-page__hero-card{
    grid-template-columns:minmax(0,1fr);
  }
  .dst-search-page__grid{
    grid-template-columns:minmax(0,1fr);
  }
  .dst-search-page__sidebar{
    position:static;
  }
  .dst-search-page__cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:767px){
  .dst-search-page{
    padding-top:24px;
  }
  .dst-search-page__hero-card{
    grid-template-columns:1fr;
    gap:22px;
    padding:24px;
  }
  .dst-search-page__hero-media{
    max-width:520px;
    margin-inline:auto;
  }
  .dst-search-page__hero-media img{
    border-radius:24px 58px 24px 58px;
  }
  .dst-search-page__form{
    grid-template-columns:1fr;
  }
  .dst-search-page__live-search{
    z-index:26;
  }
  .dst-search-page__live-search .dst-explore-blog-search__results{
    max-height:min(340px,54vh);
  }
  .dst-search-page__form button{
    width:100%;
  }
  .dst-search-page__cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
  .dst-search-page__empty{
    padding:24px 18px;
  }
  .dst-search-page__empty-media img{
    border-radius:24px;
  }
  .dst-search-page__empty-cta{
    width:100%;
    max-width:360px;
    min-height:50px;
    font-size:14px;
  }
}
@media (max-width:520px){
  .dst-search-page__cards{
    grid-template-columns:1fr;
  }
}
@media (prefers-reduced-motion:reduce){
  .dst-search-page__form button,
  .dst-search-fallback-card__cta{
    transition:none!important;
    transform:none!important;
  }
}
