/* PC_SUB DEDICATED FILE */
/* =========================================================
   34_community.css (PC)
   - Community showcase page
   ========================================================= */

/* =========================================================
   Community showcase page (PC)
   ========================================================= */

.cmv-showcase{
  padding: 26px 0 40px;
}

.cmv-shell{
  width: min(1340px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 284px minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.cmv-side{
  position: sticky;
  top: calc(var(--header-h) + 26px);
  align-self: start;

  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: transparent;
}

.cmv-nav-btn{
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  color: #2E3B42;
  text-align: center;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  padding: 16px 22px;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}

.cmv-nav-btn--featured{
  border-top: 0;
  padding-top: 16px;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}

.cmv-nav-btn:hover{
  background: #837765;
  color: #fff;
}

.cmv-nav-btn.is-active{
  background: #837765;
  color: #fff;
}

.cmv-content{
  min-width: 0;
}

.cmv-panel{
  display: none;
}

.cmv-panel.is-active{
  display: block;
}

.cmv-head{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.cmv-head-mark{
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-left: 6px solid #a8a79c;
  border-top: 6px solid #a8a79c;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

.cmv-head-copy{
  padding-top: 8px;
}

.cmv-head-title{
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  color: #2E3B42;
  letter-spacing: -0.03em;
}

.cmv-head-desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  letter-spacing: -0.02em;
}

.cmv-mosaic{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 0;
  overflow: hidden;
  background: #f2f2f2;
}

.cmv-tile{
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #e9e9e9;
}

.cmv-tile--lg{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.cmv-tile--wide{
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.cmv-tile img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.cmv-tile--wide img{
  min-height: 230px;
}

.cmv-tile-label{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  background: rgba(27, 29, 41, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.cmv-main-media{
  margin: 0;
  overflow: hidden;
  background: #ececec;
}

.cmv-main-media img{
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce){
  .cmv-nav-btn{
    transition: none;
  }
}
