/* ============================
   SHARED COMPONENTS
   ============================ */

/* Section tag label (uppercase small heading) */
.section-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #4B698C;
    margin: 0 0 8px;
}

/* Section main title */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: var(--color-text);
    margin: 0;
}

/* Vertical divider */
.divider-vertical {
    width: 0;
    height: 100%;
    border: none;
    border-left: 1px solid #D2D2D2;
    margin: 0;
}

/* Card white with shadow */
.card-shadow {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0px 8px 100px 0px #00000012;
}

/* Form input base */
.input-base {
    width: 100%;
    height: 52px;
    padding: 14px 21px;
    border: 1px solid #E3E3E3;
    border-radius: 14px;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-fast);
}

.input-base:focus {
    border-color: var(--color-active);
}

.input-base::placeholder {
    color: #BBBBBB;
}

.textarea-base {
    width: 100%;
    min-height: 120px;
    padding: 14px 21px;
    border: 1px solid #E3E3E3;
    border-radius: 14px;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    outline: none;
    resize: vertical;
    transition: border-color var(--transition-fast);
}

.textarea-base:focus {
    border-color: var(--color-active);
}

/* Button primary (red) */
.btn-primary-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    min-width: 64px;
    padding: 0 24px;
    border: none;
    border-radius: 100px;
    background: #C30608;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity var(--transition-fast);
    margin-top: 10px;
}

.btn-primary-red:hover {
    opacity: 0.9;
}

.btn-primary-red img {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}
