/* Custom CSS */

/* Example: Override main section background color. */
/* body .jupiterx-main {
    background-color: gray;
} */

.jupiterx-header {
    top: 0 !important; /* Override the inline style */
}
.gform-theme--foundation .gform_fields {
  grid-row-gap: 20px !important;
}

input#gform_submit_button_1 {
    background-color: #23213b00;
}

.gform_footer.top_label {
    background-color: #22263b;
    display: grid;
}
.gform_ajax_spinner {
	display: none !important;
}

/* Apply styles only if body has both 'archive' and 'category' classes */
body.archive.category {

    /* General Styling for Post Page */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f1f1f1;
    padding: 30px 0;
}

/* Container Styling */
body.archive.category .jupiterx-main-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Card Layout for Post Loop */
body.archive.category .jupiterx-post-loop {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.archive.category .jupiterx-post-loop:hover {
    transform: translateY(-5px);
}

/* Post Image Styling */
body.archive.category .jupiterx-post-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Post Title Styling */
body.archive.category .jupiterx-post-title a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

body.archive.category .jupiterx-post-title a:hover {
    color: #1abc9c;
}

/* Post Meta Information */
body.archive.category .jupiterx-post-header {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #999;
}

/* Text Content Styling */
body.archive.category .jupiterx-post-content p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

/* Author and Date Styling */
body.archive.category .jupiterx-post-content .author-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9em;
    color: #777;
}

body.archive.category .jupiterx-post-content .author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Flex Layout for Meta and Author Info */
body.archive.category .jupiterx-post-content .meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Spacing between elements */
body.archive.category .elementor-element.e-flex.e-con {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Apply to the entire elementor-widget-text-editor container */
body.archive.category .elementor-widget-text-editor {
    display: -webkit-box;
    -webkit-line-clamp: 10; /* Adjust to control the number of lines (10 is approximate) */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 150px; /* Adjust this height to approximate 150 words */
}

