﻿
.psychology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.psychology-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

    .psychology-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background: var(--secondary-color);
        border-radius: 15px 0 0 15px;
    }

    .psychology-item:hover {
        transform: translateY(-10px);
    }

.color-swatch {
    width: 100%;
    height: 150px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.psychology-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    line-height: 1.1;
}

.psychology-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    border-left: none;
    padding-left: 0;
}