/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #4b79a1, #283e51);
    color: white;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-sub {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-highlights span {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: default;
}

/* Announcements Grid */
.announcements {
    text-align: center;
}

.announcements h2 {
    text-align: center;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* Announcement Tile */
.announcement-tile {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6e9ef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

/* Accent bar */
.announcement-accent {
    height: 6px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
}

/* Thumbnail — smaller + subtle */
.announcement-thumb {
    width: 70px;
    margin: 20px auto 10px auto;
    display: block;
    opacity: 0.85;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Title — bigger + stronger */
.announcement-title {
    padding: 10px 20px 5px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    line-height: 1.4;
}

/* Subtitle — click here for more details */
.announcement-sub {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
    font-weight: 500;
}

/* Hover effect */
.announcement-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}


/* SUPPORT TOOLBAR */
.support-toolbar {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.toolbar-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.toolbar-item {
    background: #ffffff;
    border: 1px solid #e3e6e8;
    border-radius: 10px;
    padding: 20px;
    min-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s ease;
    /* smooth animation */
}

.toolbar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
