
.escort-directory {
    padding: 20px;
}
.escort-level-title {
    font-size: 24px;
    color: #e91e63;
    margin-top: 40px;
}
.escort-level-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.escort-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.escort-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.escort-name {
    font-size: 18px;
    margin: 10px 0;
}
.escort-phone {
    display: inline-block;
    color: #fff;
    background: #e91e63;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
.escort-phone:hover {
    background: #c2185b;
}
