html {
    height: 100% !important;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

b {
    font-weight: 900;
}

p {
    margin-bottom: 0;
}

.bg-gray {
    background-color: #f5f5f5;
}

.profile-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.img-overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-heading {
    /*font-size: 1.1rem;*/
    font-weight: 500;
    color: #c5c5c5;
}

.font-bold {
    font-weight: 500;
}

.store-logo {
    height: 2rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.store-text span {
    display: block;
    font-size: 0.8rem;
}

.store-text strong {
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .content-wrapper {
        max-width: 720px;
        margin: 0 auto;
    }
}

video:focus {
  outline: none !important;
  border: none !important;
}

.icon-img {
    width: 16px;
    height: 20px;
    object-fit: contain;
    margin-left: 5px;
}

.audio-icon-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*position: absolute;*/
    background-color: rgba(0,0,0,0.45);
    width: 20%;
    height: 30px;
    bottom: 3.8dvh;
    right: 0.5dvw;
    padding: 0 5px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    opacity: 0.95;
    user-select: none;
    cursor: pointer;
}

.audio-title-marquee{
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}

.audio-title-text{
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.audio-title-marquee.is-marquee .audio-title-text{
    padding-left: 100%;
    animation: marquee-left 10s linear infinite;
}

@keyframes marquee-left{
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce){
    .audio-title-marquee.is-marquee .audio-title-text{ animation: none; padding-left: 0; }
}

@media (max-width: 768px) {
    .audio-icon-wrap {
        width: 35% !important;
    }
}
