/**
 * Volleyball News Block Styles
 * Color Theme: Orange
 */

/* Column Base */
.volleyball-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Header & Orange Line */
.volleyball-col .npl-col-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.volleyball-col .npl-col-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 15px 0 0;
    color: #111;
}

.volleyball-col .line-orange {
    height: 3px;
    background-color: #ffb429;
    flex-grow: 1;
}

/* Main Featured Post */
.volleyball-col .npl-col-main-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.volleyball-col .npl-col-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.volleyball-col .npl-col-main-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.volleyball-col .npl-col-main-title a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.volleyball-col .npl-col-main-title a:hover { color: #ffb429; }

.volleyball-col .npl-col-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.volleyball-col .npl-col-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* List Items */
.volleyball-col .npl-col-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.volleyball-col .npl-col-list-item:last-of-type { border-bottom: none; }

.volleyball-col .npl-col-list-img img {
    width: 100px;
    height: 65px;
    object-fit: cover;
}

.volleyball-col .npl-col-list-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.volleyball-col .npl-col-list-title a { color: #000; text-decoration: none; }
.volleyball-col .npl-col-list-title a:hover { color: #ffb429; }

/* Nav Buttons */
.volleyball-col .npl-col-nav {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.volleyball-col .npl-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #eee;
    background: #fff;
    color: #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.volleyball-col .npl-nav-btn:hover {
    border-color: #ffb429;
    color: #ffb429;
}