/* event-reviews.css */

/* Main container */
main {
    max-width: 1000px;
    margin: 3px auto 10px auto;
    padding: 40px 20px;
    background: rgb(185, 237, 237);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Review page title */
.review-title { 
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 2em;
    font-weight: bold;
    margin-top: -25px;
    margin-bottom: 10px;
    color: #0b0000;
    /*line-height: 1.2;*/
}

/* Author line */
.review-author {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: #242424;
    margin-bottom: 20px;
}

/* Review images */
.review-image {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* Body text */
main p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #0b0000;
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive design for tablets */
@media screen and (max-width: 992px) {
    main {
        padding: 25px 15px;
    }

    .review-title {
        font-size: 1.7em;
    }

    .review-image {
        width: 75%;
    }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
    main {
        margin: 3px auto 15px auto;
        padding: 20px 15px;
    }

    .review-title {
        font-size: 1.5em;
    }

    .review-image {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    main {
        margin: 3px 18px 18px 18px;
    }
}

/* Extra small screens (≤480px) */
@media screen and (max-width: 480px) {
    main {
        margin: 3px auto 10px auto;
    }

    .review-title {
        font-size: 1.3em;
    }
}
