/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1755204615
Updated: 2025-08-14 20:50:15
*/


/* ----------------------------------*/
/* GUTENBERG BLOCK STYLES */
/* ----------------------------------*/

/* --------- GB BUTTONS --------- */
/* Prevent Elementor global link color from affecting Gutenberg buttons */
.wp-block-button .wp-block-button__link {
  color: var(--wp--preset--color--black);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* Button hover — works with AND without links */
.wp-block-button:hover .wp-block-button__link,
.wp-block-button .wp-block-button__link:focus {
  background-color: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white) !important;
}

/* --------- GB QUOTE BLOCKS --------- */
/* Blockquote */
.wp-block-quote {
  border-left: none; /* remove default WP quote line */
  margin: 4rem 2rem;
}

/* Blockquote text  */
.wp-block-quote p {
  margin-bottom: 0;
  background-color: #f5f5f5; 
  padding: 1.25rem 1.5rem;
}

/* Pullquote */
/* Change border color and thickness */
.wp-block-pullquote {
    border-top: 4px solid #ffcb05 ; 
    border-bottom: 4px solid #ffcb05;
    padding: 3rem 2rem !important; 
    text-align: left !important; 
}

/* Pullquote text */
.wp-block-pullquote p {
    color: #00274c !important;
    font-style: italic;
    background-color: #ffffff;
}

/* Pullquote citation text */
.wp-block-pullquote cite, .wp-block-pullquote .wp-block-pullquote__citation {
    color: #666;
}

/* --------- GB READ TIME BLOCK --------- */
/* Font Awesome clock icon */
.wp-block-post-time-to-read::before, 
.elementor-widget-theme-post-content .wp-block-post-time-to-read::before,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-post-time-to-read::before {
    content: '\f017'; 
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    color: #ffcb05;
    display: inline-block;
}
.wp-block-post-time-to-read,
.elementor-widget-theme-post-content .wp-block-post-time-to-read,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-post-time-to-read {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
    font-weight: 700;
    margin-bottom: 30px;
}

/* --------- GB DETAILS BLOCK --------- */
.wp-block-details,
.elementor-widget-theme-post-content .wp-block-details,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details {
    margin-bottom: 1.5rem;
    border: 1px solid #000000;
    border-radius: 0px;
    background: #fafafa;
}
.wp-block-details summary,
.elementor-widget-theme-post-content .wp-block-details summary,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--wp--preset--color--black);
    background: transparent;
    border: none;
    outline: none;
    transition: background 0.2s ease;
}
.wp-block-details summary:hover,
.elementor-widget-theme-post-content .wp-block-details summary:hover,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details summary:hover {
    background: #f0f0f0;
}
.wp-block-details[open] summary,
.elementor-widget-theme-post-content .wp-block-details[open] summary,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details[open] summary {
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid var(--wp--preset--color--black);
}
/* Existing rule - keeps padding on other elements */
.wp-block-details > :not(summary),
.elementor-widget-theme-post-content .wp-block-details > :not(summary),
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details > :not(summary) {
    padding: 0 16px 16px;
}

/* Fix - target lists as direct children of the details block */
.wp-block-details > ul,
.wp-block-details > ol,
.wp-block-details > .wp-block-list,
.elementor-widget-theme-post-content .wp-block-details > ul,
.elementor-widget-theme-post-content .wp-block-details > ol,
.elementor-widget-theme-post-content .wp-block-details > .wp-block-list,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details > ul,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details > ol,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-details > .wp-block-list {
    padding: 0 16px 16px calc(16px + 1.25rem);
    margin-top: 24px 0 0 0;
    margin-bottom: 0;
}

/* --------- GB ACCORDION BLOCK --------- */

/* Outer container */
.wp-block-accordion,
.elementor-widget-theme-post-content .wp-block-accordion,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion {
    margin-bottom: 1.5rem;
    border: 1px solid #000000;
    border-radius: 0px;
    background: #fafafa;
    overflow: hidden;
}

/* Each accordion item - add divider between items */
.wp-block-accordion-item,
.elementor-widget-theme-post-content .wp-block-accordion-item,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-item {
    border-bottom: 1px solid #000000;
}

.wp-block-accordion-item:last-child,
.elementor-widget-theme-post-content .wp-block-accordion-item:last-child,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-item:last-child {
    border-bottom: none;
}

/* Heading toggle button - matches summary styles */
.wp-block-accordion-heading__toggle,
.elementor-widget-theme-post-content .wp-block-accordion-heading__toggle,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-heading__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: inherit;
    font-weight: 600;
    color: var(--wp--preset--color--black);
    transition: background 0.2s ease;
}

/* Hover state - matches summary:hover */
.wp-block-accordion-heading__toggle:hover,
.elementor-widget-theme-post-content .wp-block-accordion-heading__toggle:hover,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-heading__toggle:hover {
    background: #000000;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
    text-decoration: none;
}

/* Remove layout-flow margin between accordion items */
.wp-block-accordion.is-layout-flow > .wp-block-accordion-item,
.elementor-widget-theme-post-content .wp-block-accordion.is-layout-flow > .wp-block-accordion-item,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion.is-layout-flow > .wp-block-accordion-item {
    margin-block-start: 0;
}

/* Restore top padding inside the panel so content doesn't touch the border */
.wp-block-accordion-panel,
.elementor-widget-theme-post-content .wp-block-accordion-panel,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-panel {
    padding: 16px 16px 16px;
}

/* Open state heading - matches details[open] summary */
.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle,
.elementor-widget-theme-post-content .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle {
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid #000000;
}

/* Toggle icon - plus by default */
.wp-block-accordion-heading__toggle-icon,
.elementor-widget-theme-post-content .wp-block-accordion-heading__toggle-icon,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-heading__toggle-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Toggle icon - x when open */
.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon,
.elementor-widget-theme-post-content .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon {
    content: "×";
}

/* Panel content padding - matches details > :not(summary) */
.wp-block-accordion-panel,
.elementor-widget-theme-post-content .wp-block-accordion-panel,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-panel {
    padding: 0 36px 16px;
}

/* Lists inside panel - mirrors Details block fix */
.wp-block-accordion-panel > .wp-block-list ul,
.wp-block-accordion-panel > .wp-block-list ol,
.elementor-widget-theme-post-content .wp-block-accordion-panel > .wp-block-list ul,
.elementor-widget-theme-post-content .wp-block-accordion-panel > .wp-block-list ol,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-panel > .wp-block-list ul,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-panel > .wp-block-list ol {
    padding-left: 1.25rem;
    margin: 0;
}
/* Reset H3 inheritance on accordion heading */
.wp-block-accordion-heading,
.elementor-widget-theme-post-content .wp-block-accordion-heading,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-heading {
    font-size: 0.889rem;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

/* Override Elementor global button styles on the toggle */
.wp-block-accordion-heading__toggle,
.elementor-widget-theme-post-content .wp-block-accordion-heading__toggle,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-heading__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.889rem; /* explicit, not inherit */
    font-family: 'Poppins', sans-serif; /* explicit override of Elementor button font */
    font-weight: 600;
    color: var(--wp--preset--color--black);
    transition: background 0.2s ease;
    letter-spacing: normal; /* Roboto Condensed often carries letter-spacing */
    text-transform: none; /* in case Elementor buttons have text-transform set */
}

/* Also target the title span directly as a fallback */
.wp-block-accordion-heading__toggle-title,
.elementor-widget-theme-post-content .wp-block-accordion-heading__toggle-title,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-accordion-heading__toggle-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.889rem;
    font-weight: 600;
}

/* --------- GB DROP CAP --------- */
.wp-block-paragraph.has-drop-cap::first-letter,
.elementor-widget-theme-post-content p.has-drop-cap::first-letter,
.editor-styles-wrapper .elementor-widget-theme-post-content p.has-drop-cap::first-letter {
  color: #000000;
  font-size: 5.2em;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  line-height: .85;
  float: left;
}

/* --------- GB IMAGE BLOCK --------- */
/* Image captions */
.wp-block-image .wp-element-caption, .wp-caption-text{
  font-size: 0.875rem; /* smaller than body text */
  font-style: italic;
  color: #333333;
  margin-top: 0.75rem;
  line-height: 1.4;
}

/* --------- GB LAYOUT BLOCKS --------- */
.wp-block-group {
  margin-bottom: 2rem;
}
.wp-block-group.has-background {
  padding: 2rem;
  border-radius: 0.25rem;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.wp-block-column {
  flex: 1 1 0;
  min-width: 220px;
}
.wp-block-cover,
.wp-block-cover-image,
.wp-block-cover.alignwide,
.wp-block-cover.alignfull {
  position: relative;
  overflow: hidden;
}
.wp-block-cover .wp-block-cover__inner-container {
  max-width: var(--wp--style--layout--content-size, 860px);
}
.wp-block-table,
.wp-block-table.is-style-stripes {
  width: 100%;
  margin-bottom: 2rem;
}
.wp-block-table th,
.wp-block-table td {
  padding: 0.95rem 1rem;
}

/* --------- GB YOUTUBE BLOCK --------- */
/* Force YouTube embeds to 16:9 */
.wp-block-embed-youtube.wp-has-aspect-ratio iframe,
.wp-block-embed-youtube.wp-has-aspect-ratio embed,
.wp-block-embed-youtube.wp-has-aspect-ratio object {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* Force YouTube embeds to 16:9 even if 4:3 class is applied */
.wp-block-embed-youtube.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}

/* Fix padding-bottom issue */
.wp-block-embed-youtube.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
  padding-top: 56.25% !important;
}

.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}

/* --------- GB TEXT LINKS --------- */
/* Text link styles for Gutenberg blocks */
.elementor-widget-theme-post-content a:not(.wp-block-button__link) {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    transition: 0.2s ease;
    color: var(--wp--preset--color--black);
}
/* Text link hover styles for Gutenberg blocks */
.elementor-widget-theme-post-content a:not(.wp-block-button__link):hover {
    background: var(--wp--preset--color--um-maize);
    text-decoration-color: var(--wp--preset--color--um-maize);
}

/* Superscript footnote link styles */
.elementor-widget-theme-post-content sup.fn a,
.editor-styles-wrapper .elementor-widget-theme-post-content sup.fn a {
    padding: 0 2px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: currentColor;
    transition: background 0.2s ease;
}
.elementor-widget-theme-post-content sup.fn a:hover,
.editor-styles-wrapper .elementor-widget-theme-post-content sup.fn a:hover {
    background: var(--wp--preset--color--um-maize) !important;
}

/* --------- GB FOOTNOTES --------- */
.wp-block-footnotes,
.elementor-widget-theme-post-content .wp-block-footnotes,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-footnotes {
  margin-top: 2rem;
  padding: 1.3rem 2.5rem;
  background: #f4f4f4;
  border: 1px solid #d5d5d5;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333333;
}
.wp-block-footnotes ol,
.elementor-widget-theme-post-content .wp-block-footnotes ol,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-footnotes ol {
  margin: 0;
  padding-left: 1.25rem;
}
.wp-block-footnotes li,
.elementor-widget-theme-post-content .wp-block-footnotes li,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-footnotes li {
  margin-bottom: 0.75rem;
}
.wp-block-footnotes li::marker,
.elementor-widget-theme-post-content .wp-block-footnotes li::marker,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-footnotes li::marker {
  font-weight: 600;
  color: #000;
}
.wp-block-footnotes a,
.elementor-widget-theme-post-content .wp-block-footnotes a,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-footnotes a {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.wp-block-footnotes a:hover,
.elementor-widget-theme-post-content .wp-block-footnotes a:hover,
.editor-styles-wrapper .elementor-widget-theme-post-content .wp-block-footnotes a:hover {
  color: #000000;
  text-decoration-color: #ffcb05;
}


/* ----------------------------------*/
/* ELEMENTOR STYLES */
/* ----------------------------------*/

/* --------- POSTS WIDGET ---------*/

/* Reflow text & image correctly on mobile in the "posts" widget in Elementor Pro */
@media (max-width: 767px) {
	.elementor-posts .elementor-post {
		display: block !important;
	}

	.elementor-post__thumbnail__link {
		margin-bottom: 20px;
	}
}

/* Read more arrow for Elementor posts widget */
.elementor-post__read-more::after {
    content: '\f061'; /* Font Awesome Unicode */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
    color: #ffcb05;
    display: inline-block;
}

/* --------- TEXT STYLES ---------*/

/* Adds chunky underline to text */
	.chunky-underline {
    text-decoration: underline;
    text-decoration-color: #FFCB05;
    text-decoration-thickness: 6px;
    text-decoration-skip-ink: none;
    text-underline-offset: -2px;
    }
