/* ═══════════════════════════════════
   CREDENTIALS — квалификация
═══════════════════════════════════ */
.creds-section {
  background: linear-gradient(160deg, #f5ede0 0%, #ede0cc 100%);
  padding: 5rem 6vw;
  position: relative;
  overflow: hidden;
}
.creds-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(92deg, transparent 0, transparent 18px, rgba(160,104,56,.02) 18px, rgba(160,104,56,.02) 20px),
    repeating-linear-gradient(178deg, transparent 0, transparent 40px, rgba(160,104,56,.012) 40px, rgba(160,104,56,.012) 42px);
  pointer-events: none;
}

.creds-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.creds-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sec-tag-creds {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .7rem;
}

.creds-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.creds-h em {
  font-style: italic;
  color: var(--bark);
}

.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.creds-col-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.creds-col {
  background: rgba(255,255,255,.7);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(160,104,56,.15);
}

.creds-col-title {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 1.5px solid rgba(160,104,56,.15);
}

.creds-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.creds-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.cl-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

.cl-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.cl-sub {
  font-size: .76rem;
  color: var(--text-soft);
  margin-top: .15rem;
  line-height: 1.4;
}

.cl-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(160,104,56,.3);
  transition: color .2s, border-color .2s;
}
.cl-link:hover {
  color: var(--bark);
  border-color: var(--bark);
}

.creds-poster {
  max-width: 600px;
  width: 100%;
  margin: 2.5rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(160,104,56,.15);
  box-shadow: 0 8px 32px rgba(122,78,40,.13);
}
.creds-poster img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .3s ease;
}
.creds-poster:hover img {
  transform: scale(1.04);
}
.creds-poster-cap {
  font-size: .78rem;
  color: var(--text-soft);
  text-align: center;
  padding: .6rem;
  background: rgba(255,255,255,.75);
}
