.announcementClass {
    max-width: 1400px;
    margin: 0 auto;
}

.tenant-app-announcement {
    background: linear-gradient(135deg, #f7f9fc 0%, #eef3fb 100%);
    border: 1px solid #d9e3f0;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tenant-app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.tenant-app-text {
    flex: 1 1 500px;
}

.announcement-badge {
    display: inline-block;
    background: #ffc632;
    color: #1f2d3d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.tenant-app-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 15px;
    color: #24344d;
}

.announcement-subtext {
    font-size: 18px;
    color: #4f5f78;
    margin-bottom: 15px;
    line-height: 1.6;
}

.announcement-description {
    font-size: 16px;
    color: #5d6b82;
    line-height: 1.8;
    margin-bottom: 20px;
}

.announcement-features {
    padding-left: 18px;
    margin: 0 0 25px;
    color: #425168;
}

.announcement-features li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.announcement-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.store-btn {
    display: inline-block;
    text-decoration: none;
}

.store-badge {
    height: 56px;
    width: auto;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.announcement-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-badge {
    height: 55px !important;
    width: auto !important;
    max-width: 220px !important;
    display: block;
}

.download-link {
    font-weight: 600;
    text-decoration: none;
    color: #2d4f7c;
}

.download-link:hover {
    text-decoration: underline;
}

.tenant-app-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.app-preview {
    max-width: 300px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
    background: #fff;
}

.announcement-web-access {
    margin-top: 18px;
}

.web-access-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #5d6b82;
}

.web-access-text a {
    color: #2d4f7c;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.web-access-text a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .tenant-app-text h2 {
        font-size: 30px;
    }

    .tenant-app-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .tenant-app-visuals {
        width: 100%;
        min-height: 260px;
    }

    .secondary-preview {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 576px) {
    .tenant-app-announcement {
        padding: 25px 20px;
    }

    .tenant-app-text h2 {
        font-size: 26px;
    }

    .announcement-subtext {
        font-size: 16px;
    }

    .announcement-description {
        font-size: 15px;
    }

    .store-badge {
        height: 50px;
    }

    .tenant-app-visuals {
        min-height: 220px;
    }

    .app-preview {
        max-width: 180px;
    }

    .secondary-preview {
        max-width: 140px;
    }
}