@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

body.cd-page {
  background: #ffffff;
  font-family: 'Manrope', sans-serif;
}

.cd-wrap {
  width: calc(100% - 40px);
  max-width: 1450px;
  margin: 0 auto;
}

.border-header {
  border-top: 1px solid #ddd;
}

.cd-list-page {
  padding: 22px 0 24px;
}

.cd-list-page h1 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.cd-detail {
  margin-top: 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.85;
  max-width: 1120px;
}

.cdc-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.cdc-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.cdc-card {
  display: block;
  border: 1px solid #dadada;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  width: 100%;
  padding: 14px;
}

.cdc-logo {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.cdc-logo img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: #fff;
  padding: 4px;
}

.cdc-body {
  padding: 6px 2px 2px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.cdc-value {
  color: #26354d;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.cdc-store {
  margin-top: 4px;
}

.cdc-store a {
  color: #111;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.cdc-title {
  margin-top: 4px;
  color: #444;
  font-size: 13px;
  line-height: 1.45;
}

.cdc-verify {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 12px;
}

.verify-icon {
  width: 16px;
  height: 16px;
  position: relative;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  line-height: 1;
}

.verify-icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  margin: 0;
}

.cdc-verify img {
  width: 16px;
  height: 16px;
}

.cdc-cta {
  margin-top: auto;
  padding-top: 12px;
}

.cdc-cta .redirected {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  border: 1px dashed var(--primary-color);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
}

.cdc-sidebar {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
  align-self: start;
  width: 320px;
}

.cdc-sidebar-in {
  padding: 12px 0 8px;
}

.cdc-list-title {
  padding: 0 14px 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.cdc-list a {
  display: block;
  border-top: 1px solid #ececec;
  color: #444;
  font-size: 13px;
  line-height: 1.35;
  padding: 10px 14px;
  text-decoration: none;
  width: 100%;
  white-space: normal;
}

.cdc-list a i {
  float: right;
  color: var(--primary-color);
  margin-top: 1px;
}

.cd-empty {
  border: 1px dashed #ccc;
  border-radius: 8px;
  color: #555;
  padding: 14px;
}

@media screen and (max-width: 980px) {
  .cdc-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cdc-layout {
    grid-template-columns: 1fr;
  }

  .cdc-sidebar {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .cd-list-page h1 {
    font-size: 27px;
  }

  .cdc-main {
    grid-template-columns: 1fr;
  }

  .cdc-logo {
    min-height: 110px;
  }

  .cdc-cta .redirected {
    font-size: 16px;
  }
}

@import url('../assets/css/theme.css');



