/* ===========================
   BĒRNA PSIHOLOĢISKAIS PORTRETS
=========================== */

.position-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.position-title {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-color);
    max-width: 150px;
}
.circle.psychology {
    cursor: pointer;
    transition: transform .25s ease;
}

.circle.psychology:hover {
    transform: scale(1.08);
}

.form-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.date-label {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #6e573e;
}

.position-description{
    margin-top:15px;
    font-size:15px;
    line-height:1.6;
    color:#555;
}

.position-preview{
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid #e5d8c8;
    font-size:15px;
    line-height:1.7;
    color:#333;
}

.full-report-section{
    max-width:900px;
    margin:70px auto;
    padding:40px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.report-list{
    margin:20px 0 30px;
    padding-left:20px;
}

.report-list li{
    margin-bottom:12px;
    line-height:1.7;
}

.report-ending{
    font-size:1.05rem;
    font-weight:500;
    margin:30px 0;
}

.cta-button{
    display:inline-block;
    padding:16px 34px;
    background:#b89b49;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    font-size:1rem;
    transition:.3s;
}

.cta-button:hover{
    background:#a88937;
    transform:translateY(-2px);
}

@media (max-width: 768px) {

    .psychology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .position-title {
        font-size: 0.85rem;
    }

}