body{
  font-family:Arial, sans-serif;
  background:#fff;
  margin:0;
  padding:24px;
  color:#222;
}


.container{
  max-width:480px;
  margin:0 auto;
}


.profile-photo{
  width:100%;
  max-width:240px;
  height:340px;
  object-fit:cover;
  border-radius:12px;
  display:block;
  margin:0 auto 20px auto;
  box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.name{
  font-size:24px;
  font-weight:bold;
  text-align:center;
  margin-bottom:4px;
}

.title{
  font-size:16px;
  color:#555;
  text-align:center;
  margin-bottom:18px;
}


.contact-block{
  max-width:320px;
  margin:0 auto;
  text-align:left;
}

.group-title{
  font-size:17px;
  font-weight:bold;
  margin-top:18px;
  margin-bottom:6px;
  color:#333;
  text-align:left; 
}

.contact-item{
  font-size:15px;
  margin:3px 0;
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:flex-start; 
}

.contact-item img{
  width:18px;
  height:18px;
  opacity:.6;
}

.contact-item span{
  word-break:break-word;
}


.vcard-btn{
  display:block;           
  width:max-content;
  background:#0078ff;
  color:#fff;
  padding:10px 20px;
  border-radius:8px;
  margin:24px auto 10px auto;
  text-decoration:none;
  font-weight:bold;
}


.about{
  margin-top:10px;
  font-size:15px;
  line-height:1.5;
  color:#444;
  max-width:360px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.logo-wrap{
  margin-top:26px;
  text-align:center;
}

.logo{
  max-width:90px;
  opacity:0.8;
}


.footer{
  text-align:center;
  margin-top:18px;
  font-size:12px;
  color:#999;
}

.footer a{
  color:#999;
  text-decoration:none;
}


@media (max-width:500px){
  body{padding:16px;}
  .profile-photo{
    max-width:100%;
    height:360px;
  }
}

/* Desktop Silber Edition Frame */
@media (min-width: 700px) {

  body {
    background: #f5f5f7; 
  }

  .container {
    background: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .profile-photo {
    max-width: 220px;
    height: 300px;
    border-radius: 14px;
  }

  .name {
    font-size: 26px;
    margin-top: 10px;
  }

  .title {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .vcard-btn {
    margin-top: 28px;
  }

  .about {
    font-size: 16px;
    margin-top: 30px;
    line-height: 1.55;
    max-width: 420px;
  }
}