/* Основной контейнер */
#IDFineART-root {
  box-sizing: border-box;
  font-family: "Times New Roman", Times, Georgia, serif;
  color: #252525;
  background-color: #f6f6f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Карточка */
#IDFineART-card {
  background: #ffffff;
  max-width: 880px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.06);
  padding: 36px;
  text-align: center;
  border: 1px solid rgba(37, 37, 37, 0.04);
}

/* Заголовки */
#IDFineART-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(37, 37, 37, 0.02), rgba(37, 37, 37, 0.01));
}

#IDFineART-subtitle {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
  font-weight: 500;
}

.IDFineART-h {
  font-size: 18px;
  margin: 28px 0 12px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(37, 37, 37, 0.01), rgba(37, 37, 37, 0.00));
}

.IDFineART-p {
  font-size: 15px;
  line-height: 1.58;
  color: #333;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

#IDFineART-personal {
  margin: 14px auto;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(37, 37, 37, 0.06);
  background: linear-gradient(180deg, #fff, #fbfbfb);
  max-width: 720px;
  text-align: left;
}

#IDFineART-personal strong {
  display: inline-block;
  min-width: 120px;
  color: #111;
  font-weight: 700;
}

/* --- Стили для контактов (список) --- */
.IDFineART-contact {
  margin-top: 12px;
  display: flex;
  flex-direction: column; /* Вертикальный список */
  gap: 8px;
}

.IDFineART-contact a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(37, 37, 37, 0.06);
  padding-bottom: 2px;
  font-weight: 500;
}

#IDFineART-utility {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.IDFineART-btn {
  cursor: pointer;
  border: 1px solid rgba(37, 37, 37, 0.08);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.02);
}

.IDFineART-btn:hover {
  transform: translateY(-2px);
}

#IDFineART-footer {
  margin-top: 26px;
  font-size: 13px;
  color: #666;
}

@media (max-width: 720px) {
  #IDFineART-card {
    padding: 20px;
    border-radius: 12px;
  }
  #IDFineART-title {
    font-size: 22px;
  }
  .IDFineART-h {
    font-size: 16px;
  }
  .IDFineART-p {
    font-size: 15px;
    max-width: 100%;
  }
  #IDFineART-personal {
    padding: 12px;
  }
  .IDFineART-contact {
    justify-content: flex-start;
  }
  #IDFineART-utility {
    flex-direction: column;
    gap: 8px;
  }
}