body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    margin: 0;
    color: #222;
}

.photo-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 2em;
}

header h1 {
    font-size: 2.4em;
    color: purple;
    margin-bottom: 1em;
}

.intro {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    margin-bottom: 2em;
}
/* ૮ ºﻌºა */
.photo {
    max-width: 120px; height: auto;
    object-fit: cover;
    border-radius: 6px;
    /* float: right; */
}

.photo-figure figcaption {
    font-size: 0.95em;
    color: #333;
    margin-top: 0.5em;
    text-align: center;
}

.photo-text {
    font-size: 12pt;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
}
