.cards_inner {
    background: var(--black);
}
.card-list {
    padding: 100px 0;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 300px);
    gap: 30px;
}
.card {
    border: 2px solid var(--orange);
    border-radius: 10px;
    padding: 10px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.card h3 {
    color: white;
    font-size: 16px;
}

.card p {
    color: white;
    font-size: 14px;
}

.photo {
    width: 100%;
    height: 180px;
    border: 2px solid var(--orange);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}