.tryout-highlight {
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
}

.info-grid {
    max-width: 1100px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background-color: #A41F35;
    color: white;
    border-radius: 18px;
    padding: 30px;
    border: 0px solid white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.info-card h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.45rem;
    font-weight: 800;
}

.info-card p {
    color: white;
    line-height: 1.65;
    margin-bottom: 0;
}

.tryout-button {
    display: inline-block;
    background-color: white;
    color: #A41F35;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tryout-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.tryout-button:active {
    transform: translateY(-1px) scale(0.98);
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-button:hover {
    background-color: white;
    color: #A41F35;
}

.tryout-post-image {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 25px auto;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.white-divider {
    width: 50%;
    height: 1px;
    background-color: white;
    margin: 25px auto;
    opacity: 0.7;
}

.bounce-button {
    animation: buttonBounce 2s ease-in-out infinite;
}

@keyframes buttonBounce {
    0%, 70%, 100% {
        transform: translateY(0);
    }

    78% {
        transform: translateY(-8px);
    }

    86% {
        transform: translateY(0);
    }

    93% {
        transform: translateY(-4px);
    }
}

@media screen and (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        margin: 20px;
    }

    .info-card {
        padding: 24px;
    }

    .tryout-button {
        display: block;
        text-align: center;
        margin: 15px auto 0;
        max-width: 320px;
    }
}