    @font-face { font-family: 'FiraSans'; src: url('regular.woff2') format('woff2'); font-weight: normal; }
    @font-face { font-family: 'FiraSans'; src: url('medium.woff2') format('woff2'); font-weight: 500; }
    @font-face { font-family: 'Montserrat'; src: url('bold.woff2') format('woff2'); font-weight: 500; }

    body { 
        background-color: #fdffea;
        padding: 10px;
        margin: 0;
        font-family: 'FiraSans', sans-serif;
    }
    
        h1, h2, h3, h4, h5 {
		font-family: 'Montserrat', 'FiraSans', sans-serif;
    }

    .voyage-grid {
        display: grid;
        gap: 20px;
        justify-content: center; 
        margin: 0 auto;
        width: 100%;
        padding-top: 20px;
        box-sizing: border-box;
    }

    @media (min-width: 1300px) {
        .voyage-grid { 
            grid-template-columns: repeat(3, minmax(0, 600px)); 
        }
    }

    @media (max-width: 1299px) and (min-width: 800px) {
        .voyage-grid { 
            grid-template-columns: repeat(2, minmax(0, 600px)); 
        }
    }

    @media (max-width: 799px) {
        .voyage-grid { 
            grid-template-columns: repeat(1, minmax(0, 600px)); 
        }
    }

    .voyage-card {
        width: 100%;
        max-width: 600px;
        aspect-ratio: 1 / 1; 
        position: relative;
        border: 2px solid #333;
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        display: block;
        background-size: cover;
        background-position: center;
        margin: 0 auto;
    }

    .card-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 65%;
        aspect-ratio: 1 / 1; 
        background-color: rgba(253, 255, 234, 0.85);
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
        color: #333;
        box-sizing: border-box;
    }

    .card-overlay h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: clamp(2rem, 5vw, 2rem);
        margin-bottom: 10px;
        color: #333;
    }

    .card-overlay h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: clamp(1.5rem, 4vw, 1.5rem);
        color: #333;
    }

.voy-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.voy-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 600px);
}

.voy-block {
    width: 100%;
    height: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
}

.voy-img-block {
    width: 600px;
    height: 600px;
    background-clip: padding-box; 
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25);
    position: relative; 
    background-size: cover;
    background-position: center;
    border: 2px solid #333;
    border-radius: 8px;
}

.voy-block h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.voy-block h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.voy-block h5 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.voy-block p { font-size: 1.3rem; line-height: 1.5; }

@media (max-width: 1200px) {
    .voy-grid {
        grid-template-columns: 1fr;
    }
    .voy-block {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: 600px;
    }
}

.img-caption {
    position: absolute;
    background-color: #ffffff;
    border: 2px solid #333;
    border-radius: 5px;
    padding: 0.5rem;
    z-index: 10;
    max-width: 80%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.img-caption h3 {
    font-size: 1.5rem; 
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.pos-tl { top: 10px; left: 8px; }
.pos-tr { top: 10px; right: 8px; }
.pos-bl { bottom: 9px; left: 8px; }
.pos-br { bottom: 9px; right: 8px; }
