/*
Theme Name: Activello Child
Theme URI: https://colorlib.com/wp/themes/activello/
Template: activello
Author: Colorlib
Author URI: https://colorlib.com
Description: Activello is a creative and modern WordPress blog theme. It's perfect for personal blogs, magazines, newspapers, and other editorial projects. The theme is fully responsive and Retina ready. It has a clean and modern design with a focus on typography and usability.
Tags: blog,custom-background,custom-colors,custom-logo,custom-menu,editor-style,featured-images,footer-widgets,full-width-template,rtl-language-support,sticky-post,theme-options,threaded-comments,translation-ready,block-styles,wide-blocks,accessibility-ready
Version: 9991.4.9.1773163904
Updated: 2026-03-10 17:31:44

*/

:root {
  --container-max: 1200px;
  --container-padding: 24px;
  
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-accent: #c4a77d;
  --color-border: #e5e5e5;
  
  --font-size-base: 17px;
  --font-size-base-mobile: 16px;
  
  --font-size-h1-desktop: 42px;
  --font-size-h2-desktop: 32px;
  --font-size-h3-desktop: 24px;
  
  --font-size-h1-tablet: 36px;
  --font-size-h2-tablet: 30px;
  --font-size-h3-tablet: 26px;
  
  --font-size-h1-mobile: 32px;
  --font-size-h2-mobile: 28px;
  --font-size-h3-mobile: 24px;
  
  --line-height-base: 1.7;
  --line-height-headings: 1.3;
  
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-heading: 'Cormorant Garamond', 'Times New Roman', serif;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: min(var(--container-max), 1280px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

h1, h2, h3, .entry-title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-headings);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1, .entry-title {
  font-size: var(--font-size-h1-desktop);
  margin-bottom: 0.6em;
}

h2 {
  font-size: var(--font-size-h2-desktop);
  margin-top: 2em;
  margin-bottom: 0.6em;
}

h3 {
  font-size: var(--font-size-h3-desktop);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  font-weight: var(--font-weight-medium);
}

p {
  margin-bottom: 1.2em;
  color: var(--color-text-light);
}

a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: var(--color-text);
}

.wp-block-list {
  margin: 1.5em 0;
  padding-left: 0;
  list-style: none;
}

.wp-block-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.6em;
  color: var(--color-text-light);
}

.wp-block-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  /*top: 16px;*/
  color: var(--color-accent);
}

.wp-block-list li strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.wp-block-yoast-faq-block {
  margin: 3em 0;
  padding: 0;
  border: none;
}

.schema-faq-section {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--color-border);
}

.schema-faq-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.schema-faq-question {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h3-desktop);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-headings);
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  display: block;
}

.schema-faq-answer {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-light);
  margin: 0;
}

.wp-block-separator {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 15%, var(--color-accent) 85%, transparent 100%);
  margin: 1.2em auto;
  max-width: 200px;
  opacity: 0.6;
  position: relative;
}

.wp-block-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0.8;
}

.disclamer {
  font-size: .85em;
  color: var(--color-text-light);
  text-align: center;
  /*margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid var(--color-border);*/
  margin-bottom: 1.2em !important;
}

.disclamer em {
  font-style: normal;
}

/*strong em,
em strong {
  display: block;
  font-style: italic;
  color: var(--color-text-light);
  margin: 1.5em 0;
  padding: 1em 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: none;
}*/

@media screen and (max-width: 1024px) {
  h1, .entry-title {
    font-size: var(--font-size-h1-tablet);
  }
  
  h2 {
    font-size: var(--font-size-h2-tablet);
  }
  
  h3 {
    font-size: var(--font-size-h3-tablet);
  }
  
  .schema-faq-question {
    font-size: var(--font-size-h3-tablet);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: var(--font-size-base-mobile);
  }
  
  :root {
    --container-padding: 20px;
  }
  
  h1, .entry-title {
    font-size: var(--font-size-h1-mobile);
  }
  
  h2 {
    font-size: var(--font-size-h2-mobile);
  }
  
  h3 {
    font-size: var(--font-size-h3-mobile);
  }
  
  .schema-faq-question {
    font-size: var(--font-size-h3-mobile);
  }
}



.wp-block-table.cmg-table {
  margin: 2em 0;
  overflow-x: auto;
}

.wp-block-table.cmg-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.wp-block-table.cmg-table thead {
  background: #f88c24;
  border: none;
}

.wp-block-table.cmg-table thead th,
.wp-block-table.cmg-table thead td {
  color: #fff;
  border-color: #f88c24;
  text-align: center;
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-semibold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 20px;
}

.wp-block-table.cmg-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.wp-block-table.cmg-table tbody tr:last-child {
  border-bottom: none;
}

.wp-block-table.cmg-table tbody td {
  padding: 20px;
  color: var(--color-text-light);
  line-height: 1.6;
  vertical-align: top;
	border-color: #f88c24;
}

.wp-block-table.cmg-table tbody td:first-child {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  /*width: 25%;*/
}

.wp-block-table.cmg-table tbody tr:hover {
  background-color: #fafafa;
}

@media screen and (max-width: 768px) {
  .wp-block-table.cmg-table {
    font-size: 14px;
  }
  
  .wp-block-table.cmg-table thead th,
  .wp-block-table.cmg-table thead td {
    padding: 12px 16px;
  }
  
  .wp-block-table.cmg-table tbody td {
    padding: 16px;
  }
  
  .wp-block-table.cmg-table tbody td:first-child {
/*    width: 35%;*/
  }
}



.orange {
  background-color: #f88c2420;
  padding: 24px 28px;
  border-radius: 4px;
  margin-bottom: 1.2em !important;
  border-left: 4px solid #f88c24;
  border-right: 4px solid #f88c24;
}

.orange p {
  color: var(--color-text);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.orange strong {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}

.orange :last-child {
  margin-bottom: 0 !important;
}


.gray {
  background-color: #f5f5f5;
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 1.2em !important;
  border: 1px solid #e8e8e8;
}

.gray .wp-block-heading {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-h3-desktop);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 0.8em;
}

.gray p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

@media screen and (max-width: 1024px) {
  .gray .wp-block-heading {
    font-size: var(--font-size-h3-tablet);
  }
}

@media screen and (max-width: 768px) {
  .gray {
    padding: 24px;
  }
  
  .gray .wp-block-heading {
    font-size: var(--font-size-h3-mobile);
  }
}


.cmg-pic {
  /*margin: 2.5em 0;*/
  position: relative;
}

.cmg-pic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cmg-pic:hover img {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.cmg-pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,26,0.4) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cmg-pic:hover::after {
  opacity: 1;
}
