
/* Hero Section Style */
.hero {
    position: relative;
    min-height: 268px;
    background-color: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-path {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.hero-path-1 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #F07126;
}

.hero-path-2 {
    color: #66788A;
}

.hero-path-3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #66788A;
}

.hero-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #03213E;
}

/* Content Section Style */
.content {
    padding: 64px 0;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.menu a {
    padding: 12px 50px;
    border: 1px solid #F07126;
    color: #F07126;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu a:hover {
    background-color: #F07126;
    color: #F8F9FA;
}

.menu a.active {
    color: #F8F9FA;
    border: none;
    background-color: #F07126;
}

.menu a label {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    min-height: 345px;
    border-radius: 16px;
    border: 1px solid #EBEDF0;
    box-shadow:
        0px 2px 4px 0px rgba(96, 97, 112, 0.16),
        0px 0px 1px 0px rgba(40, 41, 61, 0.04);
}

.card:hover .card-title {
    color: #F07126;
    cursor: pointer;
}

.card-image {
    width: 100%;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.no-data {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    color: #66788A;
    font-size: 16px;
    font-weight: 700;
}

.no-data img {
    width: 250px;
    margin-bottom: 16px;
}

.container-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 92px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #03213E;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.information {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #66788A;
    font-size: 14px;
    line-height: 24px;
}

.information p {
    margin: 0;
}

.information p.datetime {
    display: -webkit-box;
    max-width: 90px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #66788A;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

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

/* --- Laptop (max-width: 1200px) --- */
@media (max-width: 1200px) {
    .menu {
        gap: 16px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .menu a {
        min-width: 260px !important;
        text-align: center;
    }

    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .information p.datetime {
        max-width: none;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {

    /* Hero */
    .hero-image {
        left: -300px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .hero-path {
        gap: 12px;
    }

    .hero-title {
        text-align: start;
        font-size: 24px;
        line-height: 32px;
        color: #03213E;
    }

    /* Content */
    .card-container {
        grid-template-columns: 1fr;
    }
}