.ag-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.ag-location-card {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    color: #fff;
    overflow: hidden;
}
.ag-location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}
.ag-location-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
}
.ag-location-flag {
    width: 40px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}
.ag-location-title {
    font-size: 32px;
    margin: 0 0 10px;
    font-family: serif;
    color: #fff;
}
.ag-location-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #e0e0e0;
}
.ag-location-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px;
    color: #ccc;
}
.ag-location-divider {
    height: 2px;
    width: 40px;
    background-color: #d4af37;
}

@media (max-width: 767px) {
    .ag-location-grid {
        grid-template-columns: 1fr !important;
    }
    .ag-location-card {
        padding: 40px 20px;
        min-height: 300px;
    }
    .ag-location-content {
        max-width: 100%;
    }
}