/* ── Contact Card Plugin ── */

.cc-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cc-cards-wrapper .cc-card {
  flex: 0 1 530px;
  min-width: 530px;
  max-width: 530px;
  margin: 0;
}

.cc-card {
  display: flex;
  align-items: stretch;
  max-width: 640px;
  border-radius: 4px;
  overflow: hidden;
  margin: 2em 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ── Photo ── */
.cc-photo {
  flex: 0 0 45%;
  min-height: 200px;
  overflow: hidden;
}

.cc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Info panel ── */
.cc-info {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Name ── */
.cc-name {
  font-size: 22px !important;
  color: #ffffff !important;
  margin: 0;
}

/* ── Company ── */
.cc-company {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
}

/* ── Contacts block ── */
.cc-contacts {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.cc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
}

.cc-link:hover {
  opacity: 0.75;
  color: #ffffff;
  text-decoration: none;
}

.cc-link svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── LinkedIn ── */
.cc-linkedin {
  display: inline-flex;
  color: #ffffff;
  margin-top: auto;
  text-decoration: none;
  font-size: 24px;
  transition: opacity 0.2s;
}

.cc-linkedin:hover {
  opacity: 0.75;
}

.cc-copyright {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #ffffff;
  font-size: 11px;
  opacity: 0.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* ── Color themes ── */
.cc-color-igmetall .cc-info {
  background-color: #e3051b;
}
.cc-color-ihk .cc-info {
  background-color: #004b88;
}
.cc-color-amz .cc-info {
  background-color: #00877f;
}

.cc-color-verlauf .cc-info {
  background: linear-gradient(
    120deg,
    #e3051b 0%,
    #004b88 35%,
    #00877f 70%,
    #004b88 100%
  );
}

/* сначала более широкий breakpoint */
@media (max-width: 768px) {
  .cc-cards-wrapper .cc-card {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* потом более узкий */
@media (max-width: 600px) {
  .cc-cards-wrapper {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 20px;
  }

  .cc-cards-wrapper > .cc-card,
  .cc-cards-wrapper > * {
    width: 260px !important;
    max-width: 260px !important;
    min-width: 260px !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .cc-card {
    display: flex;
    flex-direction: column !important;
    width: 260px !important;
    max-width: 260px !important;
    min-width: 260px !important;
  }

  .cc-photo {
    flex: none;
    width: 100%;
    height: 160px;
  }

  .cc-photo img {
    object-position: center 20%;
  }

  .cc-info {
    padding: 16px;
  }
}
