:root {
    /* Primary colors */
    --primary: #2A5F50;
    --primary-dark: #1F4A3D;
    --primary-light: #E8F5F1;
    --primary-lighter: #F4FAF8;

    /* Secondary colors */
    --secondary: #C65D3B;
    --secondary-dark: #A84D2D;
    --secondary-light: #F5E5DF;

    /* Accent */
    --accent: #D4A574;
    --accent-light: #F5EFE7;

    /* Neutrals */
    --background: #F8F7F4;
    --surface: #FFFFFF;
    --sidebar: #2A5F50;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --border: #e5e7eb;
    --shadow: rgba(42, 95, 80, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Header Annonces */
.announcements-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.announcements-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.announcements-header .container {
    position: relative;
    z-index: 1;
}

.announcements-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.announcements-header p {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb-section {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid Layout */
.announcements-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 968px) {
    .announcements-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 1rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    /* color: var(--text-secondary); */
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.filter-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-option:hover {
    color: var(--primary);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: var(--primary);
}

.filter-option label {
    cursor: pointer;
    flex: 1;
    font-size: 0.875rem;
}

.filter-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--primary-lighter);
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
}

/* Price Range */
.price-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;


}

.price-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.875rem;
    width: 40%;
    /* flex:1; */
}

.price-separator {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 95, 80, 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

/* Main Content */
.announcements-main {
    min-height: 400px;
}

/* Top Bar (Search + Sort) */
.announcements-topbar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px var(--shadow);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-input-wrapper {
    display: flex;
    flex-direction: row;
}

.search-box {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s;

}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-box i {
    /* position: absolute; */
    /* left: 1rem; */
    /* top: 50%; */
    /* transform: translateY(-50%);
    color: var(--text-secondary); */

}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;

}

.sort-dropdown select {
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
}

/* Results Count */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}

.results-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.results-count strong {
    color: var(--primary);
    font-weight: 600;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-toggle-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.view-toggle-btn.active {
    background: var(--primary-lighter);
    border-color: var(--primary);
    color: var(--primary);
}

/* Announcements Grid */
.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.announcements-grid.list-view {
    grid-template-columns: 1fr;
}

/* Announcement Card */
.announcement-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 95, 80, 0.15);
}

.announcements-grid.list-view .announcement-card {
    flex-direction: row;
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    /* 3:2 ratio */
    overflow: hidden;
    background: var(--background);
}

.announcements-grid.list-view .card-image {
    width: 300px;
    padding-top: 0;
    height: 220px;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.announcement-card:hover .card-image img {
    transform: scale(1.05);
}

/* Badges */
.card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    max-height: 100;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
}

.badge-featured {
    background: var(--secondary);
    color: white;
}

.badge-boost {
    background: var(--accent);
    color: white;
}

.badge-new {
    background: var(--secondary-light);
    color: var(--secondary);
    height: 80;
}

/* Card Body */
.card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover {
    color: var(--primary);
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcements-grid.list-view .card-description {
    -webkit-line-clamp: 3;
}

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.card-price-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.page-item {
    display: flex;
}

.page-link {
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.page-link:hover {
    background: var(--primary-lighter);
    border-color: var(--primary);
    color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .announcements-header h1 {
        font-size: 1.75rem;
    }

    .announcements-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .announcements-grid {
        grid-template-columns: 1fr;
    }

    .announcements-grid.list-view .announcement-card {
        flex-direction: column;
    }

    .announcements-grid.list-view .card-image {
        width: 100%;
        padding-top: 66.67%;
        height: auto;
    }
}


/* Layout */
.announcement-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 968px) {
    .announcement-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-section {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    margin-bottom: 2rem;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    /* 3:2 ratio */
    background: var(--background);
    overflow: hidden;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.main-image:hover {
    transform: scale(1.05);
}

.gallery-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.badge-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    height: fit-content;
    padding: 10px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
}

.thumbnail-item {
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumbnail-item.active {
    border-color: var(--primary);
}

.thumbnail-item:hover {
    border-color: var(--accent);
}

.thumbnail-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px var(--shadow);
    margin-bottom: 2rem;
}

.announcement-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.announcement-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-type {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 1.5rem 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.meta-item i {
    font-size: 1.125rem;
    color: var(--primary);
}

.meta-item strong {
    color: var(--text-primary);
    margin-left: 0.25rem;
}

/* Description */
.description-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-content {
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-line;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Sidebar */
.sidebar-section {
    position: sticky;
    top: 1rem;
    height: fit-content;
}

.sidebar-section h3{
    color: var(--text-secondary);
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px var(--shadow);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seller-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.seller-details p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
}

.contact-btn-whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-btn-phone {
    background: var(--primary);
    color: white;
}

.contact-btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 95, 80, 0.3);
}

.contact-btn-email {
    background: var(--accent);
    color: white;
}

.contact-btn-email:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.contact-reveal {
    background: var(--primary-light);
    color: var(--primary);
}

.contact-reveal:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Location Card */
.location-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px var(--shadow);
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.location-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.location-item i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Share Section */
.share-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px var(--shadow);
}

.share-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-buttons i{
    color: var(--primary);
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.25rem;
}

.share-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Similar Announcements */
.similar-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.similar-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Stats Display */
.stats-display {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 8px;
    margin-top: 1rem;
}

.stat-display-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat-display-item i {
    font-size: 1.125rem;
    color: var(--primary);
}

.stat-display-item strong {
    color: var(--primary);
    font-weight: 600;
}

/* Modal Gallery */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 2rem;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: white;
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-prev {
    left: -5rem;
}

.gallery-modal-next {
    right: -5rem;
}

/* Report Button */
.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.report-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
}

/* ameliorations of annnouncement */
