/* Tabbed Posts Widget 17373 — v2.0.0 */

.tp17373-wrapper { width: 100%; }

/* ---- Tabs Nav ---- */
.tp17373-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.tp17373-tab-btn {
    display: inline-block;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    color: #333333;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    line-height: 1.4;
}
.tp17373-tab-btn:hover { background-color: #e0e0e0; color: #333333; }
.tp17373-tab-btn.tp17373-active { background-color: #6EC1E4; color: #ffffff; }

/* ---- Tab Panels ---- */
.tp17373-tab-panel { display: none; }
.tp17373-tab-panel.tp17373-active { display: block; }

/* ---- Posts Grid ---- */
.tp17373-posts-grid {
    display: grid;
    gap: 24px;
    transition: opacity 0.2s ease;
}
.tp17373-posts-grid.tp17373-cols-1 { grid-template-columns: 1fr; }
.tp17373-posts-grid.tp17373-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tp17373-posts-grid.tp17373-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tp17373-posts-grid.tp17373-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .tp17373-posts-grid.tp17373-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .tp17373-posts-grid.tp17373-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .tp17373-posts-grid.tp17373-cols-2,
    .tp17373-posts-grid.tp17373-cols-3,
    .tp17373-posts-grid.tp17373-cols-4 { grid-template-columns: 1fr; }
}

/* ---- Post Card ---- */
.tp17373-post-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}
.tp17373-post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

/* ---- Card Image ---- */
.tp17373-card-image { overflow: hidden; line-height: 0; }
.tp17373-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.tp17373-post-card:hover .tp17373-card-image img { transform: scale(1.03); }

/* ---- Card Body ---- */
.tp17373-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ---- Post Title ---- */
.tp17373-post-title { font-size: 18px; font-weight: 600; line-height: 1.4; margin: 0 0 10px; }
.tp17373-post-title a { color: #1a1a1a; text-decoration: none; transition: color 0.2s ease; }
.tp17373-post-title a:hover { color: #6EC1E4; }

/* ---- Excerpt ---- */
.tp17373-post-excerpt { font-size: 14px; line-height: 1.7; color: #555555; margin: 0 0 12px; }

/* ---- Read More ---- */
.tp17373-read-more {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}
.tp17373-read-more:hover { color: #6EC1E4; }

/* ---- Post Meta ---- */
.tp17373-post-meta {
    font-size: 13px;
    color: #999999;
    margin-top: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.tp17373-meta-sep { color: #cccccc; }

/* ---- Pagination ---- */
.tp17373-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
    justify-content: center;
}
.tp17373-page-btn {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #f0f0f0;
    color: #333333;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    line-height: 1.4;
}
.tp17373-page-btn:hover { background-color: #e0e0e0; }
.tp17373-page-btn.tp17373-page-active { background-color: #6EC1E4; color: #ffffff; cursor: default; }
