/**
Theme Name: HATC
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hatc
Template: astra
*/
.founders-note {
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
    div#primary {
        padding-top: 0px !important;
        border-top: 0px;
    }
}
.ast-article-single figure, .ast-article-single img:not(figure img){
    box-shadow: none !important;
    border: 0 !important;
}
@media only screen and (max-width: 976px) {
    .uagb-block-7b65d6a2.is-grid .uagb-post__inner-wrap .uagb-post__image:first-child {
        margin-left: -20px;
        margin-right: -26px;
        margin-top: -20px;
    }
}
.single .entry-header, .ast-separate-container .ast-comment-list li.depth-1, .hentry {
	margin-bottom: 0px !important;
}
/* ============================================================
   HATC CLINICAL BENTO FORMS (Astra Integrated)
   Works for both Contact & Appointment Forms
   ============================================================ */

.hatc-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Default 2 columns */
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure Paragraph tags behave as flex-containers for labels/inputs */
.hatc-grid-container p {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Layout modifiers for full-width rows */
.hatc-grid-container .full-width,
.hatc-grid-container .btn-container {
    grid-column: span 2;
}

/* Clinical Typography for Labels */
.hatc-grid-container label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--ast-global-color-2); /* Astra Secondary Color */
    display: block;
}

/* Unified Styling for all Input Types */
.hatc-grid-container input[type="text"],
.hatc-grid-container input[type="email"],
.hatc-grid-container input[type="tel"],
.hatc-grid-container input[type="date"],
.hatc-grid-container input[type="datetime-local"],
.hatc-grid-container select,
.hatc-grid-container textarea {
    padding: 10px 15px !important; /* Slightly reduced padding */
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ast-global-color-3);
    width: 100%;
    height: auto; /* Ensures Astra doesn't force a small height */
    line-height: 1.5; /* Forces text to the center */
    display: block;
    -webkit-appearance: menulist; /* Restores the dropdown arrow if it vanished */
}
/* Textarea Specifics */
.hatc-grid-container textarea {
    resize: vertical;
    min-height: 120px;
}

/* DateTime & Select Refinement */
.hatc-grid-container input[type="datetime-local"],
.hatc-grid-container input[type="date"] {
    min-height: 48px; /* Standardizes height across browsers */
}

/* Hover & Focus States */
.hatc-grid-container input:focus,
.hatc-grid-container select:focus,
.hatc-grid-container textarea:focus {
    border-color: var(--ast-global-color-0); /* Astra Primary Color */
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--ast-global-color-0-rgb), 0.1);
}

/* Checkbox Row Styling (WhatsApp Toggle) */
.hatc-grid-container .checkbox-row {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.hatc-grid-container .checkbox-label {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400 !important;
    cursor: pointer;
    margin-bottom: 0;
}

.hatc-grid-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: checkbox; /* Keeps native checkbox look */
}

/* Button Container (Inline/Not Full Width) */
.hatc-grid-container .btn-container {
    display: block; 
    margin-top: 10px;
}

.hatc-grid-container .ast-button {
    padding: 14px 35px !important;
    width: auto;
    font-weight: 400;
    letter-spacing: 0.5px;
	font-size: 14px;
}

/* ============================================================
   MOBILE RESPONSIVENESS
   ============================================================ */

@media (max-width: 768px) {
    .hatc-grid-container {
        grid-template-columns: 1fr; /* Force 1 column */
        gap: 15px;
    }
    
    .hatc-grid-container .full-width,
    .hatc-grid-container .btn-container {
        grid-column: span 1;
    }
    
    /* On mobile, full-width buttons provide better UX (thumb-friendly) */
    .hatc-grid-container .ast-button {
        width: 100%;
        text-align: center;
		font-size: 16px;
    }
	.appointment-form label {
		font-size:16px;
	}
}