/**
* Theme Name: Atlas Child
* Description: This is a child theme of Atlas.
* Author: tmrwstudio
* Template: atlas
* Version: 1.0
*/
.referral-button {
	background-color: #EC1F27;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.referral-button:hover {
    background-color: #C11017;
}
.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.deal-card {
    background-color: #232A31;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    display: flex;
}
.deal-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.deal-link {
    background-color: #e53935;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}
.deal-link:hover {
    background-color: #d32f2f;
}
