/* * ==========================================
 * NEW STYLES FOR "HOW-TO" SECTION
 * ==========================================
 */

.how-to-grid {
    display: grid;
    /* Give more space to the text */
    grid-template-columns: 2fr 3fr; 
    gap: 26px;
    align-items: start;
}

/* Custom ordered list for the steps */
.steps-list {
    list-style: none;
    padding-left: 0;
    margin-top: 24px;
    counter-reset: step-counter;
}

.steps-list li {
    color: var(--teal-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

/* The teal number circle */
.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    
    background-color: var(--teal);
    color: var(--cream);
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50%;
    
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0; /* Prevents shrinking */
}

.steps-list a {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--teal);
    transition: all 0.2s ease;
}

.steps-list a:hover {
    background-color: var(--teal);
    color: var(--cream);
}

/* Video Player Mockup */
.video-player-mockup {
    /* Styled like your .carousel-box but with no padding */
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(2, 80, 67, 0.04);
    box-shadow: 0 10px 30px rgba(2, 80, 67, 0.06);
    overflow: hidden;
    height: 100%; /* Make it fit the grid */
}

.video-player-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    /* A light grey, slightly darker than cream */
    background: #EAEAEA; 
    border-bottom: 1px solid rgba(2, 80, 67, 0.04);
}

.video-player-dots {
    display: flex;
    gap: 6px;
}

.video-player-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.video-player-dots .dot-red { background: #ff5f57; }
.video-player-dots .dot-yellow { background: #febc2e; }
.video-player-dots .dot-green { background: #28c840; }

.video-player-header .video-title {
    color: #555;
    font-size: 13px;
    margin: 0 auto;
    font-weight: 500;
    transform: translateX(-18px); /* Center it */
}

.video-player-body {
    /* Adds a subtle container for the video */
    background: #000;
}

/* Responsive */
@media (max-width: 980px) {
    .how-to-grid {
        /* Stack them on smaller screens */
        grid-template-columns: 1fr;
    }
}