.sectionTres{
    width: 90%;
    margin: auto;
}
.containerCardsD {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.cardDining {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cardDining img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #ccc;
    display: block;
    z-index: 1;
}

.contCardDining {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.txtCardDining {
    color: #232629;
    font-family: "Roboto-Thin",sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.txt2CardDining {
    color: #232629;
    font-family: "EBGaramond-Regular",serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.txt3CardDining{
    color: #232629;
    font-family: "EBGaramond-Regular",serif;
    font-size: 16px;
    font-weight: 400;
}

.cardFooDining {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
}

.ver-detalles {
    text-decoration: none;
    cursor: pointer;
    color: #935938;
    text-align: center;
    font-family: "EBGaramond-Regular",serif;
    font-size: 17px;
    font-weight: 400;
    z-index: 1;
}

.ver-detalles::before {
    content: "› ";
    font-weight: bold;
}

.btn-reservar {
    background-color: #DEA87D;
    color: #072942;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    font-family: "EBGaramond-Regular",serif;
    font-size: 17px;
    font-weight: 500;
    z-index: 1;
}

.btn-reservar:hover {
    background-color: #a25f32;
}

.cardDining{
    position: relative;
}
.cardDining::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #a36946;
    --mask: radial-gradient(5px at 5px 5px, #0000 calc(98% - 1px), #000 calc(100% - 1px) 98%, #0000) -5px -5px, linear-gradient(90deg, #000 2px, #0000 0) -1px 50% / 100% calc(100% - 10px + 1px) repeat-x, linear-gradient(#000 2px, #0000 0) 50% -1px / calc(100% - 10px + 1px) 100% repeat-y;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}
.cardDining::after{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 100%;
    --s: 5px;
    --mask: radial-gradient(var(--s) at var(--s) var(--s), #0000 98%, #000) calc(-1 * var(--s)) calc(-1 * var(--s));
    -webkit-mask: var(--mask);
    mask: var(--mask);
    z-index: -1;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 768px) {
    .containerCardsD {
    grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .containerCardsD {
    grid-template-columns: 1fr;
    }
}
