/* Renity custom helpers (mirrors src/styles.css base) */
body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F8F7F3;
    color: #12203A;
}

:where(p, span, li, h1, h2, h3, h4, h5, h6, a, button, label, td, th) {
    overflow-wrap: anywhere;
    word-break: break-word;
}

pre,
code {
    overflow-x: auto;
    white-space: pre;
}


.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu li {
    list-style: none;
}

.menu li a {
    color: rgba(18, 32, 58, 0.70);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.menu li a:hover {
    color: #12203A;
}


.current-menu-item>a,
.current_page_item>a {
    color: #12203A;
    font-weight: 600;
}


.footer-menu,
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: rgba(219, 224, 237, 0.70);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    transition: color .2s ease;
}

.footer-menu a:hover {
    color: rgba(219, 224, 237, 1);
}

.renity-contact-form .gform_wrapper {
    margin: 0;
}

.renity-contact-form .gform-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.renity-contact-form .gfield {
    margin: 0 !important;
}

.renity-contact-form label.gfield_label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #12203A;
    line-height: 20px;
    margin-bottom: 8px;
    display: block;
}

.renity-contact-form input[type="text"],
.renity-contact-form input[type="email"],
.renity-contact-form textarea {
    border-radius: 14px !important;
    border: 1px solid #DBE0ED !important;
    background: #F8F7F3 !important;
    padding: 12px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1E3358 !important;
    width: 100% !important;
    outline: none !important;
    box-shadow: none !important;
    margin-bottom: 20px;
}

.renity-contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.renity-contact-form input:focus,
.renity-contact-form textarea:focus {
    border-color: rgba(18, 32, 58, .4) !important;
}

.renity-contact-form ::placeholder {
    color: rgba(30, 51, 88, .40);
}

.renity-contact-form .gform_footer,
.renity-contact-form .gform-page-footer {
    margin-top: 0 !important;
    padding: 0 !important;
}

.renity-contact-form .gform_button {
    width: 100% !important;
    border-radius: 100px !important;
    background: #12203A !important;
    padding: 16px 24px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    border: none !important;
    cursor: pointer !important;
    letter-spacing: .1px !important;
    transition: opacity .2s ease;
}

.renity-contact-form .gform_button:hover {
    opacity: .9;
}