.content-wrapper {
    background: url("../../images/pc/gourmet_post_pc/wave.svg") no-repeat center top;
}

.close-btn {
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    float: right;
    color: #e2e2e2;
}

.menu-content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.menu-content a {
    padding: 10px 0;
    text-decoration: none;
    color: #747474;
    font-size: 12px;
    font-weight: bold;
}

.header {
    color: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 30px 0;
}

.header h1 {
    font-size: 28px;
    letter-spacing: 3px;
}
.header div {
    display: flex;
    align-items: center;
    gap: 15px;
}
.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.section-title-content {
    padding-left: 40%;
}

.section-title-content-last {
    padding-left: 15%;
}

.section.cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
}
.section.hide-cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
}
.cards-left, .cards-right {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
}


.section-title-div {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.section-empty-title-div {
    height: 46px;
    visibility: hidden;
}
.section-title-div span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.cards-left-cards,
.cards-right-cards {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: stretch;
}
.card-link {
    text-decoration: none;
    color: inherit;
    width: 50%;
    display: flex;
}
.last-card-link {
    text-decoration: none;
    color: inherit;
    width: 50%;
    display: block;
}
.last-img-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    display: block;
}
.card {
    height: 320px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.last-card {
    height: 330px;
    margin-top: calc(3vh + 14px);
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    flex: 1;
}


.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: calc(330px - 120px);
    object-fit: cover;
    display: block;
}
.card-img {
    width: 100%;
    height: 100% !important;
}
.last-card img {
    width: 100%;
    height: 100%;
}
.card-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-title {
    font-size: 13px;
    text-align: left;
    color: #808080;
}

.card-content {
    font-size: 12px;
    text-align: left;
    padding: 15px 5px;
}

.card-content p {
    padding-top: 10px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
}
.div-card-title {
    letter-spacing: 4px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}
.div-empty-card-title {
    height: 46px;
    visibility: hidden;
}


@media (max-width: 768px) {
    .section{
        max-width: 100% !important;
    }
    .section.cards-wrapper ,.section.hide-cards-wrapper{
        display: block;
    }
    .cards-left,.cards-right {
        width: 100%;
    }
    .cards-right {
        margin: 20px 0;
    }
    .card-container {
        padding: 14px;
    }
    .card {
        height: 200px;
        border-radius: 15px;
    }
    .card img {
        height: calc(200px - 96px);
    }
    .card-content {
        padding: 0px 5px;
    }
    .card-title {
        font-size: 11px;
    }
    
    .card-content p {
        padding-top: 10px;
        font-size: 14px;
    }
    .mobile-hidden {
        display: none;
    }
    .header span {
        padding-left: 0;
        font-size: 12px;
    }
    .header.header-content {
        padding: 0;
    }
    .section-title-div {
        font-size: 20px;
    }
    .section-title-div span {
        font-size: 20px;
    }
}

/* Tablet Design */
@media (min-width: 769px) and (max-width: 1024px) {

    .section.cards-wrapper ,.section.hide-cards-wrapper{
        display: block;
    }
    .cards-left,.cards-right {
        width: 100%;
    }
    .cards-right {
        margin: 20px 0;
    }
    
}
