/* Tabs Buttons */
.headline-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    gap: 5px;
}
.headline-btn {
    flex: 1;
    border: none;
    background: #ddd;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
    transition: background 0.3s ease;
}
.headline-btn:hover {
    background: #bbb;
}
.headline-btn.active {
    background: #333;
    color: #fff;
}

/* Posts container grid */
.items.tab-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0px;
    padding: 3px 0;
}

/* Card Style */
.items.tab-content .card {
    background-color: #f2f2f2;
    border: 0px solid #ccc;
    border-radius: 1px;
    padding: 10px 12px;
    color: #000;
}

/* Card title */
.card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
    text-decoration: none;
}
.card-title a {
    color: inherit;
    text-decoration: none;
}
.card-title a:hover {
    color: #27ae60;
    text-decoration: underline;
}

/* Category label */
.card-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background-color: #ffffff;
    padding: 3px 15px;
    border-radius: 3px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

/* Post date */
.card-date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .items.tab-content {
        grid-template-columns: 1fr;
    }
}