.financial-statements-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.statement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.statement-item h2 {
    margin: 0;
    flex-grow: 1;
    text-align: left;
    font-size: 1.2em;
}

.statement-item h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.statement-item h2 a:hover {
    color: #f39c12;
}

.statement-date {
    margin: 0;
    color: #666;
    font-size: 0.9em;
    white-space: nowrap;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .statement-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .statement-date {
        margin-left: 0;
        margin-top: 10px;
    }
}