/*
 * Styles for the Specials Manager plugin.
 *
 * These styles ensure that specials are displayed in a single column with
 * adequate spacing and legible typography.  The container uses a flex
 * direction of column so that each special stacks vertically.  The banner
 * image is responsive, and the disclaimer is hidden by default until
 * toggled by JavaScript.
 */

.specials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.special-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.special-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.special-title {
    margin-top: 1rem;
    font-size: 1.75rem;
    line-height: 1.3;
}

.special-offer {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.special-disclaimer-toggle {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
}

.special-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
    display: none;
}