/* Styling for the container that holds the offer boxes */
.offers-grid {
    display: flex;
    flex-direction: column;  /* Stack boxes vertically */
    gap: 10px; /* Space between offer boxes */
    padding: 10px;
}

/* Styling for each offer box */
.offer-box {
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 10px; /* Rounded corners */
    background-color: #ffffff; /* White background */
    padding: 20px; /* Padding inside the box */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow to give depth */

}

/* Hover effect for offer boxes */
.offer-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
    transform: translateY(-5px); /* Lift the box slightly on hover */
}

/* Title of the offer */
.offer-box h2 {
    font-size: 1.5rem; /* Larger title */
    font-weight: 600;
    margin-bottom: 10px;
    color: #333; /* Darker text color */
}

/* Description inside the offer box */
.offer-box p {
    font-size: 1rem;
    color: #666; /* Softer text color for description */
}

/* Read More button */
.offer-box a.button {
    background-color: #3273dc; /* Custom button color (blue) */
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease; /* Smooth transition for button hover */
}

/* Hover effect for the button */
.offer-box a.button:hover {
    background-color: #275cbb; /* Darker blue on hover */
}

/* Ensure more specific targeting for secondary-btn */
a.button.secondary-btn,
button.button.secondary-btn {
    background-color: #972DBD; /* Light gray background */
    color: white;               /* Dark text color */
    border: 2px solid #972DBD;    /* Dark border */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;     /* Remove underline for links */
}

a.button.secondary-btn:hover,
button.button.secondary-btn:hover {
    background-color: #333;    /* Dark background on hover */
    color: white;              /* White text on hover */
}
