.whats-new-container {
    width: 100%;
    padding: 60px;
}

.whats-new-container h1 {
    font-size: 36px;
    line-height: 48px;
    text-align: left;
    font-weight: 500;
}

.whats-new-container .content {
    margin: 0 120px;
}

.whats-new-container .parameters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.layout-container {
	columns: 3 300px;
	column-gap: 1rem;
	margin: 1rem auto;
	width: 100%; /* Responsive width */
}

.layout-container img {
	display: block;
	margin-bottom: 1rem;
	width: 100%; /* Makes the images resize automatically */
}

.whats-new-container .content h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}

.whats-new-container .content h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.whats-new-container .content h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .whats-new-container {
        padding: 0;
    }

    .whats-new-container .content {
        margin: 0;
    }

    .whats-new-container h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .whats-new-container .parameters {
        flex-wrap: wrap;
        row-gap: 0 !important;
    }
}