/* Announcement Card Styles */
.announcement-card {
    position: relative;
    margin: 25px 15px;
    min-height: 200px;
    width: 400px;
}

.announcement-card-admin:hover .announcement-bg{
   z-index: 3;
}

.announcement-bg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-content {
    position: relative;
    background: white;
    padding: 20px;
    border: 1px solid #eee;
    z-index: 2;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    font-weight: bold;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.announcement-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 100%;
}

.announcement-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #07718b;
    transform: rotate(-4deg);
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.announcement-img {
    width: 100px;
    height: auto;
}   

.announcement-img img {
    width: 100%;
    height: auto;
}

.announcement-text {
    width: calc(100% - 100px);
}


.home-announcement-title {
    background-color: #f0f8ff;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}