/* Grid */
.journal-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 40px);
}

/* Item */
.journal-item {
    cursor: pointer;
}

.post-card{
    width: 100%;
    height: 100%;
}

/* Image */
.post-thumb {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-gray-500);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover img {
    transform: scale(1.05);
}

/* Date */
.post-card .post-time {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 1.5px);
    display: block;
    margin-bottom: 8px;
}

/* Title */
.post-card h3.post-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s;
    line-height: 1.1;
}

.post-card:hover h3.post-title {
    color: var(--color-tertiary);
}

/* Description */
.post-card .post-desc{
    font-size: clamp(13px, 1.2vw, 16px);
    color: var(--color-gray-900);
    line-height: 1.3;
}

.journal-slider .swiper-pagination{
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
}

.journal-slider .swiper-pagination .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: clamp(30px, 6vw, 60px);
    --swiper-pagination-bullet-height: 4px;
    --swiper-pagination-bullet-border-radius: 0;
    background: rgba(var(--black-rgb),0.3);
    opacity: 1;
    cursor: pointer;
}
.journal-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-tertiary);
}

/* Mobile = swiper */
@media (max-width: 992px) {
    .journal-slider .swiper-wrapper {
        display: flex;
        gap: 0;
        padding-bottom: 40px;
    }
}