.sm-entry-options.section {
    padding-top: 1rem;
    padding-bottom: 1.15rem;
}

.sm-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 0;
}

.sm-entry-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 26px 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.sm-entry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.sm-entry-card--primary {
    border: 2px solid #2e7d32;
    background: rgba(46, 125, 50, 0.08);
    transform: scale(1.02);
}

.sm-entry-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sm-entry-text {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.sm-entry-btn {
    align-self: flex-start;
    margin-top: 0.15rem;
}

html.page-index #hero .hero__actions .btn.primary,
html.page-index #hero .hero__actions .btn.primary:visited,
html.page-index .sm-entry-card--primary .sm-entry-btn.btn.primary,
html.page-index .sm-entry-card--primary .sm-entry-btn.btn.primary:visited {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

html.page-index #hero .hero__actions .btn.primary:hover,
html.page-index #hero .hero__actions .btn.primary:focus,
html.page-index #hero .hero__actions .btn.primary:focus-visible,
html.page-index .sm-entry-card--primary .sm-entry-btn.btn.primary:hover,
html.page-index .sm-entry-card--primary .sm-entry-btn.btn.primary:focus,
html.page-index .sm-entry-card--primary .sm-entry-btn.btn.primary:focus-visible {
    background: #256628;
    border-color: #256628;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.22);
}

html.page-index #hero .hero__actions .btn.primary:active,
html.page-index .sm-entry-card--primary .sm-entry-btn.btn.primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

html.page-index #hero .hero__actions .btn.ghost,
html.page-index #hero .hero__actions .btn.secondary {
    opacity: 0.85;
}

html.page-index #hero .hero__actions .btn.ghost:hover,
html.page-index #hero .hero__actions .btn.ghost:focus,
html.page-index #hero .hero__actions .btn.ghost:focus-visible,
html.page-index #hero .hero__actions .btn.secondary:hover,
html.page-index #hero .hero__actions .btn.secondary:focus,
html.page-index #hero .hero__actions .btn.secondary:focus-visible {
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

html.page-index #hero .chat-input button {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

html.page-index #hero .chat-input button:hover,
html.page-index #hero .chat-input button:focus,
html.page-index #hero .chat-input button:focus-visible {
    background: #256628;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(46, 125, 50, 0.22);
}

@media (max-width: 992px) {
    .sm-entry-options.section {
        padding-top: 0.35rem;
        padding-bottom: 0.7rem;
    }

    .sm-entry-grid {
        grid-template-columns: 1fr;
    }

    .sm-entry-btn {
        width: 100%;
        text-align: center;
    }

    .sm-entry-card--primary {
        transform: none;
    }
}
