/* Base Styles */
body {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    color: #000000;
    font-family: "Georgia", "Times New Roman", Times, serif;
    /* Serif font as per PDF */
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    width: 100%;
    max-width: 36vw;
    padding: 0 26px;
    /* Text runs maximum width shown in "Computer" example */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 105px;
    height: auto;
}

main {
    width: 100%;
}

.content {
    margin-bottom: 16px;
    padding-right: 30px;
}

.content.sty2 {
    padding-right: 0px;
}

.content p {
    margin: 0 0 10px 0;
    text-align: left;
}

/* Bagel Gallery Styling */
.bagel-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 16px;
    width: 100%;
}

.bagel-item {
    width: 100%;
}

.bagel-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Footer & Sign-off */
footer {
    width: 100%;
    margin-top: 20px;
}

.sign-off {
    margin-bottom: 40px;
}

.sign-off p {
    margin: 0;
}

.sender-name {
    margin-top: 5px !important;
}

.sign-off a {
    color: inherit;
    text-decoration: none;
}

.footnote {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bagel-gallery {
        width: calc(100% - 50px);
        margin: 0 auto;
        gap: 0;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 320px;
        padding: 0 10px;
    }
}