
.wildforlife .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 10px;
    width: 100%;
    min-width: 1250px;
    height: 40vh;
}

@media (max-width: 1400px) {
    .wildforlife .columns { min-width: 1000px; }
}
@media (max-width: 1200px) {
    .wildforlife .columns {
        min-width: 700px;
        grid-template-columns: 1fr;
        height: auto;
    }
    .wildforlife h1 { font-size: 2.5rem!important; }
    .wildforlife h2 { font-size: 5rem!important; }
}
@media (max-width: 800px) {
    .wildforlife .columns {
        min-width: 500px;
        gap: 30px;
    }
    .wildforlife .col { width: 100%; }
}
@media (max-width: 600px) {
    .wildforlife .columns {
        min-width: unset;
        gap: 15px;
    }
    .wildforlife h1 { font-size: 2rem!important; }
    .wildforlife h2 { font-size: 3rem!important; }
}
@media (max-width: 500px) {
    .wildforlife h2 { font-size: 2.5rem!important; }
}

.wildforlife h1 {
    font-size: 4rem!important;
    margin: 0!important;
}
.wildforlife h2 {
    margin: 0!important;
    font-size: 10rem!important;
}
.wildforlife .col {
    display: block;
    max-height: 100%;
    overflow-y: auto;
}
.wildforlife .columns ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wildforlife .columns ul li {
    text-align: left;
    list-style-type: none;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}