/* ===============================
   WATCH JOURNAL SECTION
================================ */

.watch-journal {
    padding: 80px 20px;
}

.watch-journal .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 26px;
    letter-spacing: 2px;
    color: #363532;
    font-weight: 500;
}

/* Arrows */
.journal-arrows {
    display: flex;
    gap: 15px;
}

.swiper-button-next,
.swiper-button-prev {
    position: static;
    width: 36px;
    height: 36px;
    border: 1px solid #d29e21;
    border-radius: 50%;
    color: #d29e21;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
}

/* ===============================
   CARD
================================ */

.journal-card {
    display: flex;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9f7f7;
}

/* Image */
.journal-image {
    flex: 0 0 45%;
    height: 260px;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.journal-content {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.journal-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.journal-content h3 a {
    color: #000;
    text-decoration: none;
}

.journal-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.journal-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;

    display: -webkit-box;
    -webkit-line-clamp: 3;         /* EXACTLY 3 LINES */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: 12px;
    font-size: 14px;
    color: #d29e21;
    text-decoration: none;
    font-weight: 500;
}

/* ===============================
   RESPONSIVE
================================ */

/* @media (max-width: 768px) {
    .journal-card {
        flex-direction: column;
    }

    .journal-image {
        height: 240px;
    }
} */

@media (max-width: 576px) {
    .section-title {
        font-size: 22px;
    }
    .journal-card {
        flex-direction: column;
    }
    .journal-content {
        padding: 20px;
    }

    .journal-image {
        height: 220px;
        flex: unset;
    }
}