.dream-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin: 0px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.dream-team-card {
    background: transparent;
    padding: 0;
    position: relative;
}

.dream-team-card h2 {
    margin: 0 0 16px 0;
    color: #000;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    font-family: "proxima-nova", Georgia, "Times New Roman", serif;
}

.team-description {
    margin-bottom: 24px;
    color: #000000;
    line-height: 1.6;
    font-size: 18px;
    font-family: "proxima-nova", Georgia, "Times New Roman", serif;
}

.campus-buttons {
    display: flex;
    gap: 0;
    border: 1px solid #000;
    border-radius: 3px;
}

.campus-btn {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 1px;
    font-family: "Open Sans", Arial, sans-serif;
    position: relative;
}

/* Arrow for all buttons */
.campus-btn::after {
    content: "\24";
    margin-left: 8px;
    margin-top: 2px;
    font-family: ETmodules;
    font-weight: 400;
}

/* Divider between buttons */
.campus-btn:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;
}

.campus-btn:hover {
    background: #239a84;
    color: #fff !important;
}

@media (max-width: 1024px) {
    .dream-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .dream-team-card h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .dream-team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .dream-team-card h2 {
        font-size: 24px;
    }
    
}
