/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/hello-elementor-child
 Description:  Child theme for Hello Elementor (safe for custom CSS/overrides)
 Author:       Your Name
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Add your custom CSS below */

@import url("https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap");
:root {
  --primary: #00caa8;
  --light: #f1fcfa;
  --body: #00332b;
  --e-global-typography-primary-font-size: 1rem;
  --e-global-typography-accent-font-size: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
.parkinsans {
  font-family: "Parkinsans", sans-serif;
  font-optical-sizing: auto;
  --e-global-typography-primary-line-height: -0.03em;
  --e-global-typography-primary-line-height: 1.2em;
  --e-global-typography-primary-font-weight: 500;
}

h1,
.h1 {
  --e-global-typography-primary-font-size: 3.1875rem;
  --e-global-typography-primary-font-weight: 600;
}
h2,
.h2 {
  --e-global-typography-primary-font-size: 2rem;
}
h3,
.h3 {
  --e-global-typography-primary-font-size: 1.5rem;
}
h4,
.h4 {
  --e-global-typography-primary-font-size: 1.25rem;
}
h5,
.h5 {
  --e-global-typography-primary-font-size: 1.125rem;
}
h6,
.h6 {
  --e-global-typography-primary-font-size: 1rem;
}
div {
  --e-global-typography-primary-line-height: 1.5em;
  --e-global-typography-text-line-height: 1.5em;
}
p {
  --e-global-typography-primary-line-height: 1.7em;
  --e-global-typography-text-line-height: 1.7em;
}

.elementor-element.elementor-button-info .elementor-button {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--body);
}
#header {
  position: sticky;
  top: 0;
  z-index: 2000;
}
.admin-bar #header {
  top: 32px;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

body.single .page-container {
  padding: 4rem 2rem;
}
body.single .sidebar {
  padding: 1rem 0;
}
h1.post-title {
  font-size: 2.25rem;
}
.list-sidebar {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  gap: 4rem;
}

.sidebar-links {
  padding: 2rem;
  border-radius: 2rem;
  background-color: var(--light);
}
.sidebar-links ul a {
  color: #00ab8e;
}
.sidebar-item + .sidebar-item {
  margin-top: 2rem;
}
.search-form {
  margin-bottom: 2rem;
}
.search-form label {
  width: 100%;
  display: block;
}
.search-form input {
  border-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  border-radius: 50px;
}
ul.list-categories li::marker {
  color: var(--primary);
}
ul.list-categories.list-tags li::marker {
  content: "#";
}
ul.list-categories {
  list-style: circle;
  margin-left: 0;
  padding-left: 1em;
}
.listing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
}
@media (max-width: 1200px) {
  .list-sidebar {
    grid-template-columns: 100%;
  }
  .listing {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .listing {
    grid-template-columns: 100%;
  }
}
.list-item {
  background-color: #fff;
  border-radius: 2rem;
  padding: 1.5rem;
  display: grid;
  grid-auto-rows: auto auto 1fr auto auto;
}

.bg-light {
  background-color: #f1fcfa;
}
.blog-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  background-color: #f1fcfa;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.blog-thumbnail img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 1rem;
  position: absolute;
  object-fit: cover;
}
.blog-excerpt p {
  margin: 0;
}
.list-item .blog-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.list-item hr {
  border: 0;
  border-bottom: 1px solid #e7f6f3;
  margin: 1.25rem 0;
}
.permalink {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.permalink svg {
  fill: var(--primary);
}
ul.post-taxonomies {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 1rem 2rem 0;
  padding: 0;
}
ul.post-taxonomies a {
  background-color: rgba(0, 202, 168, 0.1);
  font-size: 0.8rem;
  padding: 0.15em 0.75em;
  border-radius: 2rem;
}
ul.post-tags {
  list-style: none;
  display: inline-flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0;
}
ul.post-tags a::before {
  content: "#";
}
.all-posts-link {
  margin-bottom: 2rem;
}
.all-posts-link a {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
