/* Tips & Tricks */
.drts-dcf-tips {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drts-dcf-intro-statement {
    font-size: 1rem;
    color: #4b5563;
    /* gray-600 */
    margin: 0 0 1.5rem 0;
    line-height: 1.625;
}

.drts-dcf-tips .drts-display-element-header {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
}

.drts-dcf-tips .drts-display-element-header:before {
    content: "";
    display: block;
    height: 1px;
    background-color: #e0e0e0;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1;
}

.drts-dcf-tips .drts-display-element-header span {
    background-color: #fff;
    /* Match your page background */
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    color: #6d6d6d;
    font-weight: 700;
}

.drts-dcf-tip-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #fefce8;
    /* yellow-50 */
    border: 1px solid #fef08a;
    /* yellow-200 */
    border-radius: 0.75rem;
    align-items: flex-start;
}

.drts-dcf-tip-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.drts-dcf-tip-text {
    color: #374151;
    /* gray-700 */
    font-size: 0.9375rem;
    margin: 0;
}