/* Region Link Vertical - Centered overlay style */

.region-link.vertical {
    display: block;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.region-link.vertical:hover {
    transform: translateY(-2px);
}

.region-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.region-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.region-link.vertical:hover .region-card-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.region-card-title {
    font-size: 40px;
    color: white;
    text-align: center;
    margin: 0;
    padding: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .region-card-image {
        height: 240px;
    }

    .region-card-title {
        font-size: 32px;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .region-card-image {
        height: 200px;
    }

    .region-card-title {
        font-size: 26px;
    }
}
