.index-welcome {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 24px;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #dbe5ef;
    border-left: 4px solid #3182ce;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.index-welcome-main {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.index-welcome-season {
    margin-bottom: 8px;
    color: #526174;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.index-welcome h1 {
    margin: 0;
    color: #1f2937;
    font-size: 1.65rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.index-welcome-main > p {
    max-width: 760px;
    margin: 10px 0 16px;
    color: #4a5568;
    font-size: 0.96rem;
    line-height: 1.55;
}

.index-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.index-welcome-btn {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    color: #245b88;
    background: #f7fafc;
    border: 1px solid #cbd8e6;
    border-radius: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.index-welcome-btn:hover,
.index-welcome-btn:focus-visible {
    color: #17466d;
    background: #edf6ff;
    border-color: #8eb9df;
    text-decoration: none;
}

.index-welcome-btn-primary {
    color: #ffffff;
    background: #3182ce;
    border-color: #3182ce;
}

.index-welcome-btn-primary:hover,
.index-welcome-btn-primary:focus-visible {
    color: #ffffff;
    background: #256aa9;
    border-color: #256aa9;
}


@media (max-width: 760px) {
    .index-welcome {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 17px 15px;
    }
    .index-welcome h1 { font-size: 1.35rem; }
    .index-welcome-main > p {
        margin-bottom: 14px;
        font-size: 0.91rem;
    }
    .index-welcome-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .index-welcome-btn {
        width: 100%;
        padding: 8px 9px;
        font-size: 0.8rem;
    }
    .index-welcome-btn-primary { grid-column: 1 / -1; }
    body.is-user-logged .index-welcome-btn-primary {
        grid-column: auto;
        width: auto;
        justify-self: start;
    }
}