/* Main page colours and readable text */
body {
    background-color: #fff2f3;
    color: #40232b;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    padding: 24px;
}

/* Centre the content */
main {
    max-width: 720px;
    margin: auto;
    padding: 32px;
    background-color: white;
    border-top: 6px solid #a82542;
}

h1 {
    color: #a82542;
    font-family: Georgia, serif;
    font-size: 48px;
    margin: 0;
}

h2 {
    font-size: 23px;
    margin-top: 28px;
}

/* Keep the image inside the page on small screens */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 8px;
}

a {
    color: #a82542;
    font-weight: bold;
}

a:hover {
    color: #65172a;
}

@media (max-width: 480px) {
    body { padding: 12px; }
    main { padding: 20px; }
    h1 { font-size: 38px; }
}

/* Show both pouch designs together */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.gallery img {
    width: 100%;
    margin: 0;
}
@media (max-width: 480px) {
    .gallery { grid-template-columns: 1fr; }
}
