.yellow-cards-container {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 2fr);
}

.yellow-card {
    width: 140px;
    height: 240px;
    background-color: #fee945;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yellow-card-number {
    padding: 5px;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.grey-line {
    width: 30px;
    height: 2px;
    background-color: grey;
    margin: 10px 0;
}

.yellow-card-text-content {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 360px) {
    
    .yellow-card-number {
        font-size: 28px;
    }

    .yellow-card-text-content {
        font-size: 14px;
    }
}