.home {
    .tc-home-title-centered {
        text-align: center;
    }

    .tc-home-steps-grid {
        display: grid;
        margin: 0 auto;
        max-width: 80%;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
        margin-top: 1.25rem;
        counter-reset: step-counter;
    }

    .tc-home-step-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 1rem 1.1rem;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
        .uk-h3 {
            margin: 0 0 0.45rem;
            font-weight: 700;
            font-size: 1.25rem;
            &::after {
                content: counter(step-counter, decimal-leading-zero);
                counter-increment: step-counter;
                margin-left: 0.5rem;
                font-size: 3rem;
                float: right;
                margin-top: -1rem;
                color: $c-primary;
                opacity: 0.35;
            }
        }
        p {
            margin: 0;
        }
        a {
            color: $c-primary;
            text-transform: none;
            font-family: 'Rajdhani', sans-serif;
            letter-spacing: normal;
            font-size: 1rem;
            &:hover {
                text-decoration: underline;
            }
        }
    }
    .tc-home-welcome-section {
        text-align: left;
        max-width: 80%;
        margin: 0 auto;
    }
}
