.announcement-space {
    padding-top: 60px;
}
.show-mobile {
    display: none
}

@media screen and (max-width: 768px){
    .show-mobile {
        display: block
    }
    .hide-mobile {
        display: none
    }

    .trading-show{ 
        justify-content: center;
    }
}

.ea-space {
    padding-top: 0px !important;
}

/* Lower opacity and blur only the mockup image, not the lock watermark, in the announcement section */
.announcement-image {
    filter: blur(2px);
}

/* Tooltip shown when hovering the locked mockup images in the announcement section */
.announcement-image-box {
    position: relative;
}

.announcement-image-box::after {
    content: "Accessible only to students";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 10;
}

.announcement-image-box:hover::after {
    opacity: 1;
}
