body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f6f7fa;
  color: #1d3655;
}
.site-bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.header {
  background: #1d3655;
  color: #fff;
  font-size: 15px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.header-left {
  display: flex;
  align-items: center;
}
.logo {
  height: 35px;
  margin-right: 20px;
}
.header-nav {
/*   display: flex; */
  gap: 25px;
  font-weight: 600;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: -webkit-text-decoration 0.2s;
  transition: text-decoration 0.2s;
  transition: text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
.header-nav a:hover {
  text-decoration: underline;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-member {
  color: #c4c6ca;
  display: inline-block;
}
.header-signin {
  background: #3f57b5; 
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  padding: 6px 22px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.18s;
}
.header-signin:hover {
  background: #fff;
  color: #1d3655;
}
.breadcrumbs {
  background: #f6f7fa;
  border-bottom: 1px solid #e3e4e8;
  color: #9b9ca0;
  padding: 8px 0;
  font-size: 13px;
  max-width: 100vw;
  width: 100vw;
}
.breadcrumbs-main {
  color: #1d3655;
  font-weight: 600;
}
.main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 10px 16px;
  flex: 1 1 auto;
}
.main-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 22px;
}
.profile-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-bottom: 32px;
}
.profile-photo {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #0001;
  padding: 8px 8px 20px 8px;
  max-width: 270px;
  text-align: center;
  align-self: flex-start;
  position: relative;
}
.profile-photo img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 240px;
  height: 295px;
  border: 1px solid #e3e4e8;
  display: block;
  margin: 0 auto;
}
.profile-photo-caption {
  color: #fff;
  background: linear-gradient(to top, rgba(34,34,34,0.7) 80%, transparent 100%);
  position: absolute;
  left: 24px;
  bottom: 32px;
  width: 190px;
  padding: 5px 0 8px 0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 3px 15px 0 #0003;
}
.profile-details {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #0001;
/*   display: flex; */
  gap: 40px;
  padding: 26px 30px;
  min-width: 410px;
  max-width: 620px;
  flex: 1 1 350px;
  font-size: 16px;
}
.profile-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-col > div {
  display: flex;
  justify-content: space-between;
}
.profile-label {
  color: #9b9ca0;
  font-style: italic;
  min-width: 130px;
}
.profile-label-value {
  font-style: italic;
  color: #1d3655;
  font-weight: 600;
}
.profile-highlight {
  color: #1d3655;
  font-weight: 700;
  margin-left: 9px;
}
.profile-highlight-green {
  color: #42be92;
  font-weight: 700;
  margin-left: 9px;
}
.profile-link {
  color: #42be92;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: pointer;
  margin-left: 9px;
}

.profile-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #0001;
  margin-bottom: 32px;
  padding: 28px 34px 24px 34px;
}
.profile-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1d3655;
  margin-top: 5px;
  margin-bottom: 10px;
}
.profile-section-desc {
  font-size: 16px;
  color: #253a56;
  margin-bottom: 16px;
    display: flex;
}
.profile-section-desc  p{

    display: block;
}
.profile-photos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.profile-photos-count {
  color: #9b9ca0;
  font-size: 15px;
}
.profile-photos {
  display: flex;
  gap: 17px;
  padding-bottom: 4px;
  overflow-x: auto;
}
.profile-photos img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 120px;
  height: 150px;
  border: 1px solid #e3e4e8;
}
/* Footer */
.footer {
  background: #1d3655;
  color: #c4c6ca;
  font-size: 15px;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px 0 16px;
}
.footer-heading {
  color: #fff;
  font-weight: bold;
  margin-bottom: 9px;
}
.footer-inner ul {
  padding-left: 0;
  margin-top: 0;
  list-style: none;
}
.footer-inner li {
  margin-bottom: 3px;
}
.footer-inner a {
  color: #c4c6ca;
  text-decoration: none;
  transition: -webkit-text-decoration 0.16s;
  transition: text-decoration 0.16s;
  transition: text-decoration 0.16s, -webkit-text-decoration 0.16s;
}
.footer-inner a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 23px 16px 25px 16px;
}
.footer-dmca {
  height: 28px;
  margin-right: 6px;
}
.footer-copy {
  color: #c4c6ca;
  font-size: 13px;
}
@media (max-width: 900px) {
  .main-container, .footer-inner, .footer-bottom {
    max-width: 96vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .profile-details {
    min-width: 0;
    padding: 18px 5vw;
  }
}
@media (max-width: 700px) {
  .profile-flex {
    flex-direction: column;
    gap: 20px;
  }
  .profile-details {
    max-width: 99vw;
    min-width: 0;
    padding: 12px 5vw;
    font-size: 15px;
  }
  .profile-photo {
    max-width: 99vw;
  }
  .profile-photo img {
    width: 98vw;
    height: 200px;
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .header-inner, .footer-inner, .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .main-title {
    font-size: 18px;
  }
}
