/* SEO용 지역+업소형태 노출 키워드 링크 */
.place-card .place-keyword{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  min-height:24px;
  margin:0 0 10px;
  padding:4px 10px 5px;
  border-radius:999px;
  border:1px solid rgba(255,215,122,.32);
  background:rgba(255,215,122,.08);
  color:#ffd76f;
  font-size:.84rem;
  font-weight:900;
  letter-spacing:-.03em;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
  white-space:nowrap;
}
.place-card .place-keyword:hover{
  background:rgba(255,215,122,.16);
  border-color:rgba(255,215,122,.52);
  color:#fff0ba;
}
.place-card .place-keyword:focus-visible{
  outline:2px solid rgba(255,215,122,.9);
  outline-offset:2px;
}
.premium-card .premium-keyword{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:calc(100% - 18px);
  margin:6px 0 0;
  padding:3px 8px 4px;
  border-radius:999px;
  border:1px solid rgba(255,215,122,.34);
  background:rgba(0,0,0,.34);
  color:#ffd76f;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:-.03em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media (max-width:640px){
  .place-card .place-keyword{
    min-height:20px;
    padding:3px 7px 4px;
    margin-bottom:8px;
    font-size:.72rem;
  }
  .premium-card .premium-keyword{
    font-size:.66rem;
    padding:2px 6px 3px;
  }
}
