.review-header {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    flex-direction: row;
}
.review-block{
    display: flex;
    width: 100%;
    position: relative;
    height: auto;
    background-color: #e3dad2;
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
}
.review-block::before {
    align-self: center;
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #3a3434;
    border-radius: 10px;
    pointer-events: none;
}

.review-photo {
    width: 400px;
    height: 400px;
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    outline: 1px solid #3a3434;
}

.review-info {
    flex: 1;
}

.review-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #3a3434;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-regalia {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #3a3434;
    text-align: center;
}

.review-description {
    width: 550px;
    margin-left: 2%;
    height: 400px;
    font-family: 'Playfair Display', serif;
    font-size:16px;
    padding: 30px;
    color: #3a3434;
    border-radius: 10px;
    border: 1px solid #3a3434;
}

.review-preview {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-top: 15px;
    position: relative;
    max-height: 200px;
    overflow: hidden;
}

.review-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
}
.review-pageName{
    font-size: 75px;
}
.read-full-btn {
    display: block;
    margin-top: 15px;
    height: 60px;
    padding: 13px 25px;
    background-color: #e3dad2;
    border: 1px solid #3a3434;
    color: #3a3434;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

.read-full-btn:hover {
    border: 1px dashed #3a3434;
    background: #3a343415;
}
.review-card{
    max-width: 1300px;
    display: flex;
    margin: 0px 40px;
}
.contents_categotyimg{
    margin: 20px 0px;
}
.reviews-container {
    margin: 0 auto;
    height: auto;
}
.reviews-container::before{
    content: none;
}
.review-leftName{
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #e3dad2;
    margin-bottom: 8px;
}
.review-leftTitle{
    font-family: 'Jun', serif;
    display: block;
    font-size: 30px;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    color: #e3dad2;
    text-align: left;
}
.review-title{
    display: none;
    font-size: 30px;
    font-family: 'Cormorant Unicase', serif;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    color: #3a3434;
    text-align: left;
    padding: 5px 10px 0px 10px;
}
.review-author{
    display: none;
}
.dnd-left{
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    background: #3a3434;
    transform: rotate(45deg);
    left: -45px;
}
.dnd-right{
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    background: #3a3434;
    transform: rotate(45deg);
    right: -45px;
}
.review-flex{
    display: flex;
}
.review-line{
    width: 100%;
    height: 1px;
    background-color: #3a3434;
}
.review-leftblock{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 30px;
    z-index: 1;
}
@media (max-width: 768px) {
    .review-leftblock{
        display: none;
    }
    .review-card{
        width: 90%;
        display: flex;
        margin: 0;
    }
    .review-block{
        width: auto;
    }
    .review-author{
        display: block;
    }
    .review-flex{
        display: block;
    }
    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .review-photo {
        margin: 15px auto;
        width: 100%;
        height: 170px;
        padding: 0px 10px;
    }
    .dnd-left{
        left: -45px;
    }
    .dnd-right{
        right: -45px;
    }
    .review-info {
        text-align: center;
    }
    .review-title{
        display: block;
        font-size: 20px;
    }
    .review-description{
        width: 100%;
        font-size: 16px;
        padding: 5px 10px 0px 10px;
        margin-bottom: 0px;
        height: 100%;
        text-align: left;
        border-radius: 0;
        border: none;
    }
    .review-preview {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .read-full-btn {
        width: 100%;
        text-align: center;
        font-size: 16px;
        height: 50px;
        margin:  20px 0px;
    }
    .review-pageName{
        font-size: 40px;
    }
}