.title {
    padding-top: 120px;
    background-image: url("/media/Bali.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding-bottom: 200px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.8);
}

.title h1 {
    display: flex;
    justify-content: center;
}

.articles_content {
    display: grid;
    gap: 10px;
}

.articles_content--1, .articles_content--2, .articles_content--3, .articles_content--4, .articles_content--5, .articles_content--6 {
    display: grid;
    gap: 24px;
}

.article-card {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px;
}

.article-card .section-name-big {
    padding-bottom: 0px;
    margin-top: 10px;
}

.article-card p {
    margin: 2px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.read-button a {
    cursor: pointer;
    border: none;
    padding: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
    text-decoration: none;
    color:white !important;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 100ms ease-in-out;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.read-button a:hover {
    background-color: rgb(222, 140, 25);
}

.read-button a:visited {
    background-color: var(--secondary-color) !important;
}

.card-left .image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.card-left img {
    width: 200px;
    height: 200px;
    border-radius: 20px 0 0 20px;
    border-style: solid;
    border-right-style: none;
    border-width: 2px;
    border-color: var(--secondary-color);
}

.card-right {
    height: 200px;
    width: 300px;
    padding-left: 10px;
    margin-right: 20px;
    border-radius: 0 20px 20px 0;
    border-style: solid;
    border-left-style: none;
    border-width: 2px;
    border-color: var(--secondary-color);
}

@media (min-width: 1170px) {
    .articles_content {
        grid-template-columns: 1fr 1fr;
    }

    .articles_content--2 {
        order: 1;
    }

    .articles_content--3 {
        order: 2;
    }

    .articles_content--4 {
        order: 3;
    }

    .articles_content--5 {
        order: 4;
    }

    .articles_content--6 {
        order: 5;
    }
}

@media (max-width: 1170px) {
    .article-card {
        margin: auto;
        margin-top: 15px;
    }
}