/* Kolan Related Posts */
.krposts {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.krposts__header {
    margin-bottom: 24px;
}

.krposts__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #0f2b46;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.krposts__label i {
    font-size: 12px;
}

.krposts__title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.krposts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.krposts__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.krposts__card:hover {
    border-color: #0f2b46;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.krposts__card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.krposts__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.krposts__card:hover .krposts__card-image img {
    transform: scale(1.03);
}

.krposts__card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: #0f2b46;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.krposts__card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.krposts__card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.krposts__card:hover .krposts__card-title {
    color: #0f2b46;
}

.krposts__card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: auto;
}
.krposts__card-meta i {
    font-size: 11px;
    margin-right: 3px;
}

/* Responsive */
@media (max-width: 991px) {
    .krposts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .krposts__grid {
        grid-template-columns: 1fr;
    }
    .krposts {
        margin-top: 32px;
        padding-top: 28px;
    }
    .krposts__title {
        font-size: 18px;
    }
}
