.ps-a6322dd8-container {
    width: 100%;
}

.ps-a6322dd8-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ps-a6322dd8-item {
    position: relative;
    padding-top: 30px;
}

/* The gold top border */
.ps-a6322dd8-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b8860b;
}

.ps-a6322dd8-number {
    font-size: 40px;
    font-style: italic;
    font-family: serif;
    color: #b8860b;
    margin-bottom: 15px;
    line-height: 1;
}

.ps-a6322dd8-title {
    font-size: 28px;
    font-family: serif;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
}

.ps-a6322dd8-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    font-family: sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ps-a6322dd8-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ps-a6322dd8-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}