.dab-banner-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 25px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dab-banner-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    justify-items: center; /* ΚΕΝΤΡΑΡΕΙ ΚΑΘΕ ΚΑΡΤΑ */


}

.dab-apt-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #e5e9ea;
    border-radius: 12px;
    padding: 16px;
	width: 100%;
    max-width: 500px; /* ή 600px αν θες πιο φαρδύ */
}

.dab-apt-image img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.dab-apt-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;      /* Κεντράρει οριζόντια */
    text-align: center;       /* Κεντράρει το κείμενο */

}

.dab-apt-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.dab-apt-availability {
    margin: 0;
    font-size: 18px;
    color: #16a34a;
    font-weight: 500;
}

.dab-apt-no-availability {
    color: #b91c1c;
}

.dab-apt-button {
    margin-top: 4px;
    display: inline-block;
    padding: 6px 12px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #e11d48;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.1s ease;
}

.dab-apt-button:hover {
    background: #be123c;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .dab-banner-inner {
        padding: 16px;
        gap: 14px;
    }

    .dab-apt-card {
        padding: 16px;
    }

    .dab-apt-image img {
        width: 80px;
        height: 60px;
    }
}