/* ==========================================
   TAEKWONDO BLOCK - PREMIUM CARD GRID
   ========================================== */

.npl-taekwondo-block {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
}

/* Header */
.npl-taekwondo-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.npl-taekwondo-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 20px 0 0;
    color: #111;
}

.npl-taekwondo-line {
    height: 4px;
    background-color: #00bcd4; /* Cyan Color */
    flex-grow: 1;
}

/* Grid Layout */
.npl-taekwondo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Individual Card */
.npl-taekwondo-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.npl-taekwondo-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: #00bcd4;
}

.npl-card-thumb {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.npl-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.npl-taekwondo-card:hover .npl-card-thumb img {
    transform: scale(1.08);
}

.npl-card-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00bcd4;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
}

/* Card Content */
.npl-card-body {
    padding: 20px;
}

.npl-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.npl-card-title a { color: #111; text-decoration: none; transition: 0.3s; }
.npl-card-title a:hover { color: #00bcd4; }

.npl-card-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.npl-card-meta .sep { margin: 0 5px; color: #eee; }

.npl-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.npl-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #00bcd4;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.npl-read-more i { transition: transform 0.3s ease; }
.npl-read-more:hover i { transform: translateX(5px); }

/* RESPONSIVE FOR 7 DEVICES */
@media (max-width: 991px) {
    .npl-taekwondo-grid { grid-template-columns: 1fr; }
    .npl-card-thumb { height: 300px; }
}

@media (max-width: 480px) {
    .npl-card-thumb { height: 200px; }
    .npl-card-title { font-size: 18px; }
}