/* ============== WRAPPER ============== */

.daily-routine {
    padding: 60px 0;
    background: #fff;
}

.routine-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============== HEADER ============== */

.routine-header {
    text-align: center;
    margin-bottom: 60px;
}

.routine-header h2 {
    font-family: "Satoshi", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #391B26;
    margin-bottom: 10px;
}

.routine-header p {
    color: #555;
    font-size: 16px;
    font-weight: 300;
}

/* ============== GRID ============== */

.routine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

/* Divider na polovini razmaka */

.routine-item {
    position: relative;
    padding: 20px;
    text-align: center;
    transition: transform .3s ease;
}

.routine-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -24px; /* pola gap-a (48px / 2) */
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D6C8D0;
}

.routine-item:hover {
    transform: translateY(-6px);
}

/* ============== ICON ============== */

.routine-icon {
    width: 80px;
    height: 80px;
    background: #FAF7F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background-color .3s ease;
}

.routine-icon svg {
   
    stroke: #391B26;
    transition: stroke .3s ease;
}

.routine-item:hover .routine-icon {
    background: #391B26;
}

.routine-item:hover .routine-icon svg {
    stroke: #fff;
}

/* ============== TEXT ============== */

.routine-item h3 {
    font-family: "Satoshi", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #391B26;
    margin-bottom: 10px;
}

.routine-item p {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    max-width: 260px;
    margin: 0 auto;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 768px) {
    .routine-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .routine-item::before {
        display: none;
    }
}
