:root{
  --maxw: 760px;
  --gap: 16px;
  --radius: 16px;
  --border: rgba(0,0,0,.10);
  --text: #111;
  --muted: rgba(0,0,0,.65);
  --bg: #fff;
}

*{ box-sizing: border-box; }
img{ display:block; max-width:100%; height:auto; }

/* base */
.kk{ color: var(--text); background: var(--bg); }

/* HERO */
.kk-hero{
  position: relative;
  overflow: hidden;
  background:#111;

  height: 50vh;
  height: 50svh;
  min-height: 320px;
  max-height: 640px;
}

.kk-hero__media{
  position:absolute;
  inset:0;
  margin:0;
  z-index:0;
}

.kk-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.72);
  transform:scale(1.02);
}

.kk-hero__header{
  position:relative;
  z-index:1;
  width: min(var(--maxw), 100% - 32px);
  margin:0 auto;
  height:100%;
  display:grid;
  place-content:center;
  justify-items:center;
  text-align:center;
  gap: 12px;
  padding: 28px 0;
}

.kk-hero__title{
  margin:0;
  font-size:clamp(28px,4vw,44px);
  line-height:1.05;
  color:#fff;
}

.kk-hero__desc{
  margin:0;
  max-width: 46ch;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
  font-size: 14px;
}

/* breadcrumbs */
.kk-bc{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.86);
  font-size:14px;
}

.kk-bc__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:inherit;
  text-decoration:none;
}

.kk-bc__link:hover{ text-decoration: underline; }

.kk-bc__icon svg,
.kk-bc__sep svg{
  fill: rgba(255,255,255,.86);
}

.kk-bc__current{
  color: rgba(255,255,255,.95);
  font-weight: 600;
}

/* CONTENT */
.kk-post{
  width: min(var(--maxw), 100% - 32px);
  margin: 0 auto;
  padding: 26px 0 44px;
}

.kk-post__content{
  display:grid;
  gap: 22px;
}

/* gallery */
.kk-gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.kk-media{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background:#f5f5f5;
  aspect-ratio: 3 / 4;
}

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

.kk-media__cap{
  padding: 10px 12px;
  font-size: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.9);
  border-top: 1px solid var(--border);
}

/* text */
.kk-text__title{
  margin: 18px 0 12px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

.kk-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
}

.kk-list li{
  position:relative;
  padding-left: 22px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: rgba(0,0,0,.82);
}

.kk-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0.15em;
  font-size: 22px;
  line-height: 1;
  color: rgba(0,0,0,.75);
}

/* responsive */
@media (max-width: 720px){
  .kk-hero{
    height: 34vh;
    height: 34svh;
    min-height: 240px;
    max-height: 360px;
  }
  
}

@media (max-width: 600px){
  .kk-gallery{ grid-template-columns: repeat(1, 1fr); }
  .kk-post{ width: calc(100% - 24px); }
  .kk-list{ gap: 8px; }
  .kk-list li{ padding-left: 20px; line-height: 1.6; }
}
