:root{
  --dc-accent: rgba(144, 0, 255, 1);
  --dc-bg: #0b0b10;
  --dc-text: rgba(255,255,255,.92);
  --dc-muted: rgba(255,255,255,.55);
  --dc-muted2: rgba(255,255,255,.35);
  --dc-border: rgba(255,255,255,.08);
  --dc-glass: rgba(20,20,25,.55);
  --dc-glass-2: rgba(16,16,20,.35);
  --dc-radius: 22px;
}

.dc-locations{
  position: relative;
  padding: clamp(36px, 5vw, 72px) 0;
  overflow: hidden;
}

.dc-wrap{
  position: relative;
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
  z-index: 1;
}

.dc-grid{
  display: grid;
  grid-template-columns: 0.90fr .95fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.dc-title{
  color: rgba(255, 255, 255, 1);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.dc-sub{
  margin: 0 0 42px;
  color: rgba(118, 118, 119, 1);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
}

.dc-loc-row{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.dc-loc-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  min-width: 230px;
  border-radius: 10px;
  border: none;
  background: rgba(23, 23, 25, 0.5);
  color: var(--dc-text);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.dc-loc-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.13);
  background: rgba(18,18,22,.65);
}

.dc-loc-btn:active{
  transform: translateY(0px);
}

.dc-loc-btn.is-active{
  background-color: rgba(144, 0, 255, 1);
  color: rgba(255, 255, 255, 1);
  position: relative;
  z-index: -1;
}

.dc-loc-btn.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    rgba(64, 64, 64, 0.7),
    rgba(64, 64, 64, 0.55),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.7),
    rgba(64, 64, 64, 0.55),
    rgba(249, 249, 249, 1),
    rgba(255, 255, 255, 0.7),
    rgba(249, 249, 249, 0.7),
    rgba(64, 64, 64, 0.75)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.dc-loc-btn.is-active .dc-loc-name{
  color: rgba(255, 255, 255, 1);
}

.dc-loc-btn.is-active .dc-loc-desc{
  color: rgba(255, 255, 255, 1);
}

.dc-flag{
  width: 21px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
  flex: 0 0 auto;
}

.flag-pl{
  display:block;
  width:100%;
  height:100%;
  background: linear-gradient(#fff 0 50%, #e11d48 50% 100%);
}

.flag-de{
  display:block;
  width:100%;
  height:100%;
  background: linear-gradient(#111 0 33.33%, #ef4444 33.33% 66.66%, #f59e0b 66.66% 100%);
}

.dc-loc-text{
  display:flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.dc-loc-name{
  font-size: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}

.dc-loc-desc{
  font-size: 14px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

.dc-right{
  display:flex;
  justify-content: flex-end;
}

.dc-card{
  position: relative;
  width: min(820px, 100%);
  border-radius: 30px;
}

.dc-card-inner{
  --row-h: 56px;     
  --row-gap: 2px;   
  position: relative;
  border-radius: 30px;
  background: rgba(23, 23, 25, 0.5);
  border: 1px solid rgba(39, 40, 41, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 28px 30px;
  display: grid;
  grid-template-columns:
    minmax(0, 575px)
    minmax(92px, 150px);
  column-gap: 46px;
  align-items: start;
}


.dc-card-border{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 30px;
  pointer-events:none;
  opacity: .9;
}

.dc-card-title{
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  grid-column: 1 / -1;
}

.dc-accent{
  color: var(--dc-accent);
}

.dc-card-desc{
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: rgba(118, 118, 119, 1);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 560px;
  grid-column: 1 / -1;
}

.dc-spec{
  position: relative;
  z-index: 1;

  grid-column: 1;
  display: grid;
  row-gap: var(--row-gap);
}

.dc-spec-row{
  min-height: var(--row-h);
  display: flex;
  align-items: center;
  padding: 0;
}

.dc-spec-label{
  color: rgba(255,255,255,.30);
  font-size: 18px;
  font-weight: 500;
}

.dc-spec-row.is-highlight .dc-spec-label{
  color: rgba(144,0,255,1);
}

.dc-spec-value{
  display: none !important;
}

.dc-pill-col{
  position: relative;
  z-index: 2;

  grid-column: 2;

  display: grid;
  grid-template-rows: repeat(5, var(--row-h));
  row-gap: var(--row-gap);
  justify-items: end;
  align-items: center;
  margin-top: 0;
}

.dc-pill{
  font-size: 16px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.06);
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  user-select: none;
  min-width: 92px;
  text-align: center;
}

.dc-pill.dc-pill-accent{
  color: rgba(255,255,255,.95);
  background: rgba(144, 0, 255, 1);
  border: none;
  position: relative;
  z-index: -1;
}

.dc-pill.dc-pill-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    rgba(64, 64, 64, 0.7),
    rgba(64, 64, 64, 0.55),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.7),
    rgba(64, 64, 64, 0.55),
    rgba(249, 249, 249, 1),
    rgba(255, 255, 255, 0.7),
    rgba(249, 249, 249, 0.7),
    rgba(64, 64, 64, 0.75)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 980px){
  .dc-grid{ grid-template-columns: 1fr; }
  .dc-right{ justify-content: flex-start; }
  .dc-card{ width: 100%; }
  .dc-sub{ max-width: 100%; }
}

@media (max-width: 820px){
  .dc-card-inner{
    padding-right: 34px;
  }
  .dc-pill-col{
    position: static;
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 520px){
  .dc-title{
    font-size: 38px;
  }
  .dc-card-inner {
    --row-h: 70px;
    --row-gap: 17px;
  }
  
  .dc-wrap{ width: min(1100px, calc(100% - 28px)); }
  .dc-loc-btn{ min-width: unset; width: 100%; }
  .dc-card-title{ font-size: 20px; }
  .dc-card-desc{ font-size: 16px; }
  .dc-spec-label{ font-size: 16px; }
}
