/*
Theme Name: Astra Child
Theme URI: https://yourwebsite.com
Description: Astra Child Theme
Author: Your Name
Template: astra
Version: 1.0.0
*/

/* Add your custom CSS below this line */
.adsasia-wrapper {
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.page-title {
    text-align:center;
    font-size:32px;
    margin-bottom:30px;
}

.ads-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.ad-card {
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    text-align:center;
    transition:0.3s ease;
}

.ad-card:hover {
    transform:translateY(-5px);
}

.view-btn {
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#0a5cff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}