/* Perusasetukset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Logo-tyylit J-Pnewsin mukaan */
header {
    margin-bottom: 30px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.jp {
    color: #004b93; /* J-Pnews tummansininen */
}

.news {
    color: #f58220; /* J-Pnews oranssi */
}

/* Ilmoituskortti */
.content-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #004b93;
}

.announcement-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2c3e50;
}

.divider {
    height: 2px;
    background-color: #f0f0f0;
    width: 60px;
    margin: 0 auto 30px;
}

.signature {
    font-size: 1.1rem;
    color: #555;
}

.signature strong {
    display: block;
    margin-top: 5px;
    color: #004b93;
    font-size: 1.3rem;
}

/* Alatunniste */
footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsiivisuus mobiililaitteille */
@media (max-width: 480px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .announcement-text {
        font-size: 1.1rem;
    }
}