.hero-sub {
    position: relative;
    width: 100%;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

.hero-sub .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(60%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-sub .hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.hero-sub .hero-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-sub {
        height: 15vh;
    }
    .hero-sub .hero-title {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }
}












.pagination {
    display: flex;
    align-items: center;
    margin-top: 2px;
    font-size: 0.9rem;
    padding: 10px;
    white-space: nowrap;
}

.pagination a, .pagination span {
    text-decoration: none;
    color: #333;
    padding: 0 2px;
    display: inline-flex;
    align-items: center;
}

.pagination .home {
    font-weight: bold;
    color: var(--evergreen-green);
    transition: color 0.3s ease;
}

.pagination .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--evergreen-green);
    margin: 0 4px;
}

.pagination .this-page {
    color: #888;
    font-weight: normal;
}

.make-shorter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.make-shorter::-webkit-scrollbar {
    display: none;
}

.pagination .home:hover {
    color: var(--highlight-color);
}

@media (max-width: 768px) {
    .pagination a, .pagination span {
        padding: 0 2px;
        font-size: 0.8rem;
    }
}
