section.team-listing {
    text-align: left;

    a {
        text-decoration: none;
    }
    .team-container {

        margin-bottom: 2rem;

        img {
            margin-bottom: 1rem;
        }

        div.team-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;

            h3 {
                margin-bottom: 0.2rem;
                margin-left: 0;
            }

            p {
                color: var(--pink);
                margin-bottom: 0;
            }
            svg {
                color: var(--pink);
                height: 24px;
                width: 24px;
            }
        }
        
    }

    @media (min-width:800px) {
        .section-inner {
            display: grid;
            gap: 4rem;
            grid-template-columns: 1fr 1fr;
            img {
                height: auto;
                
            }
        }
    }

    @media (min-width:1000px) {
        .section-inner {
            grid-template-columns: 1fr 1fr 1fr;
        }
        
    }
}

section.testimonials {
    display: none;
}

section.enquiry-form {
    display: none;
}