/**
 * NY Popular Posts - Default styles
 * Layout matches screenshot: bold rank number, thumbnail below, title to right
 *
 * Override or extend in your theme's stylesheet to customize appearance.
 */

.nypp-wrapper {
    margin: 0 0 1.5em;
    font-size: 14px;
    line-height: 1.5;
}

.nypp-heading {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 0.8em;
    padding: 0.5em 0;
    border-bottom: 2px solid #333;
}

.nypp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: nypp;
}

.nypp-item {
    margin: 0 0 1.2em;
    padding: 0;
    list-style: none;
    position: relative;
}

.nypp-item:last-child {
    margin-bottom: 0;
}

.nypp-rank {
    display: block;
    font-size: 1.6em;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 0.4em;
    color: #222;
}

.nypp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.nypp-link:hover .nypp-title {
    text-decoration: underline;
}

.nypp-thumb {
    flex: 0 0 128px;
    width: 128px;
    height: 85px;
    overflow: hidden;
    background: #f0f0f0;
}

.nypp-thumb img {
    width: 128px;
    height: 85px;
    object-fit: cover;
    display: block;
    margin: 0;
}

.nypp-text {
    flex: 1;
    min-width: 0;
}

.nypp-title {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    word-break: break-word;
}

.nypp-excerpt {
    margin: 0.4em 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}
