.profile-access{
  margin:42px 0 8px;
  padding:30px 34px;
  background:#fff;
  border:1px solid rgba(80,60,50,.10);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(55,42,34,.06);
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(260px,.85fr) auto;
  align-items:center;
  gap:32px;
}
.profile-access-main{
  display:flex;
  align-items:center;
  gap:22px;
}
.profile-access-icon{
  width:72px;
  height:72px;
  flex:0 0 72px;
  border-radius:50%;
  background:#f5ebe7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:31px;
  color:#9d4437;
}
.profile-access-kicker{
  margin:0 0 7px;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
  color:#9d4437;
}
.profile-access h2{
  margin:0 0 8px;
  font-size:clamp(1.35rem,2vw,1.75rem);
  line-height:1.15;
}
.profile-access p{
  margin:0;
  line-height:1.55;
}
.profile-access-points{
  padding-left:28px;
  border-left:1px solid #ddd4cf;
  display:grid;
  gap:9px;
  font-size:.92rem;
}
.profile-access-points span::before{
  content:"✓";
  display:inline-block;
  margin-right:9px;
  font-weight:800;
  color:#657d72;
}
.profile-access-action{
  text-align:center;
  min-width:220px;
}
.profile-access-btn{
  display:block;
  padding:14px 22px;
  border-radius:11px;
  background:#9d4437;
  color:#fff !important;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}
.profile-access-btn:hover{
  filter:brightness(.94);
}
.profile-access-note{
  display:block;
  margin-top:9px;
  font-size:.76rem;
  opacity:.65;
}
@media(max-width:900px){
  .profile-access{
    grid-template-columns:1fr;
    gap:22px;
  }
  .profile-access-points{
    border-left:0;
    border-top:1px solid #ddd4cf;
    padding:20px 0 0;
  }
  .profile-access-action{
    text-align:left;
    min-width:0;
  }
  .profile-access-btn{
    display:inline-block;
  }
}
@media(max-width:560px){
  .profile-access{
    padding:24px 20px;
  }
  .profile-access-main{
    align-items:flex-start;
  }
  .profile-access-icon{
    width:54px;
    height:54px;
    flex-basis:54px;
    font-size:24px;
  }
}
