/* =========================================
   Dplaza 월간랭킹 TOP10 리뉴얼
   - 업체 크기는 동일하게 유지
   - 1~3위는 배지 색상만 강조
   - 큰폰트 24 / 중간폰트 16 / 작은폰트 14 기준
========================================= */

.dprank-page{
    width:980px;
    margin:0 auto;
    padding:18px 0 35px 0;
    box-sizing:border-box;
    font-family:"Malgun Gothic","맑은 고딕",Dotum,Arial,sans-serif;
    color:#222;
}

.dprank-title{
    margin:0 0 18px 0;
    padding:14px 18px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:12px;
    box-sizing:border-box;
}

.dprank-title h2{
    margin:0 0 6px 0;
    font-size:24px;
    line-height:1.25;
    color:#111827;
    letter-spacing:-1px;
}

.dprank-title p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#666;
}

.dprank-section{
    margin-top:22px;
}

.dprank-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
    padding-bottom:10px;
    border-bottom:2px solid #111827;
}

.dprank-section-head h3{
    margin:0;
    font-size:24px;
    line-height:1.2;
    color:#111827;
    letter-spacing:-1px;
}

.dprank-section-head p{
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.4;
}

.dprank-section-head a{
    font-size:14px;
    color:#dd1032;
    font-weight:bold;
}

.dprank-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

.dprank-card{
    position:relative;
    min-height:146px;
    padding:16px 16px 14px 16px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-sizing:border-box;
    box-shadow:0 2px 8px rgba(15,23,42,.05);
    transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.dprank-card:hover{
    border-color:#dd1032;
    box-shadow:0 8px 20px rgba(15,23,42,.10);
    transform:translateY(-1px);
}

.dprank-card-main{
    display:flex;
    gap:14px;
    align-items:center;
}

.dprank-logo{
    flex:0 0 118px;
    width:118px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #eef0f3;
    border-radius:12px;
    overflow:hidden;
    box-sizing:border-box;
}

.dprank-logo img{
    display:block;
    max-width:104px;
    max-height:58px;
    width:auto;
    height:auto;
}

.dprank-info{
    min-width:0;
    flex:1;
}

.dprank-name-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:7px;
}

.dprank-badge{
    flex:0 0 auto;
    min-width:44px;
    height:28px;
    padding:0 8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#F4F6F8;
    color:#444444;
    font-size:14px;
    font-weight:bold;
    box-sizing:border-box;
}

.dprank-card.rank-1 .dprank-badge{background:#D4AF37;color:#ffffff;}
.dprank-card.rank-2 .dprank-badge{background:#9EA7AD;color:#ffffff;}
.dprank-card.rank-3 .dprank-badge{background:#B87333;color:#ffffff;}

.dprank-shopname{
    display:block;
    min-width:0;
    font-size:24px;
    line-height:1.2;
    color:#111827;
    font-weight:bold;
    letter-spacing:-1px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.dprank-location{
    margin:0 0 5px 0;
    font-size:16px;
    line-height:1.35;
    color:#374151;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.dprank-count{
    margin:0;
    font-size:14px;
    line-height:1.35;
    color:#6b7280;
}

.dprank-keywords{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:13px;
    padding-top:12px;
    border-top:1px dashed #e5e7eb;
}

.dprank-keywords span{
    display:inline-flex;
    align-items:center;
    min-height:26px;
    padding:4px 9px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:999px;
    font-size:14px;
    line-height:1.2;
    color:#334155;
    box-sizing:border-box;
}

.dprank-youtube{
    width:100%;
    aspect-ratio:16/9;
    margin-bottom:12px;
    border-radius:12px;
    overflow:hidden;
    background:#111;
}

.dprank-youtube iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
}

.dprank-youtube-card{
    min-height:330px;
}

.dprank-section-visit .dprank-section-head{border-bottom-color:#ec2227;}
.dprank-section-md .dprank-section-head{border-bottom-color:#f6c400;}
.dprank-section-youtube .dprank-section-head{border-bottom-color:#1dbbb3;}

@media screen and (max-width:980px){
    .dprank-page{
        width:100%;
        padding:14px 12px 28px 12px;
    }
    .dprank-grid{
        grid-template-columns:1fr;
    }
}

@media screen and (max-width:560px){
    .dprank-card-main{
        align-items:flex-start;
    }
    .dprank-logo{
        flex-basis:96px;
        width:96px;
        height:64px;
    }
    .dprank-logo img{
        max-width:84px;
        max-height:50px;
    }
    .dprank-shopname{
        font-size:22px;
    }
    .dprank-location{
        white-space:normal;
    }
}
