/* Landing page: container for core blocks */
.blocks-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.template-notes .blocks-container {
    margin-left: initial;
    margin-right: initial;
}

@media only screen and (max-width: 767px) {
  .blocks-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.page-template-page-blocks .footer__container {
  max-width: 990px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .page-template-page-blocks .footer__container {
    padding-left: var(--padding-container-mobile);
    padding-right: var(--padding-container-mobile);
  }
}

.blog-compact,
.faq-items {
  margin-top: 2rem;
}
.blog-compact__list > * + * {
  margin-top: 1rem;
}
.blog-compact__card {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  text-decoration: none !important;
  transition: box-shadow 0.15s;
}
.blog-compact__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
}
.template-notes .blog-compact__card {
  box-shadow: none;
  border-radius: 5px;
  color: #333 !important;
}
.blog-compact__card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
@media (min-width: 640px) {
  .blog-compact__card-body {
    flex-direction: row;
    padding: 1.5rem;
  }
}
.blog-compact__content {
  flex: 1;
  min-width: 0;
}
.blog-compact__meta {
  margin-bottom: 0.5rem;
}
.blog-compact__date {
  font-size: 0.75rem;
  line-height: 1rem;
  color: hsl(var(--muted-foreground));
}
.blog-compact__title {
  margin-bottom: 0.5rem;
}
.blog-compact__thumb {
  overflow: hidden;
  border-radius: 0.5rem;
}
@media (min-width: 640px) {
  .blog-compact__thumb {
    width: 6rem;
    height: 6rem;
    min-width: 6rem;
  }
}
.blog-compact__thumb img,
.blog-compact__thumb picture,
.blog-compact__thumb picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
}
.blog-compact__excerpt,
.main__content .blog-compact__excerpt {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--muted-foreground));
}
.faq-items__item {
  padding-bottom: 1.25rem;
}

/* Page blocks: padding for bgColor sections */
.wp-block-onpress-faq-centered {
  padding: 60px 0 70px;
}

/* === Pages Cards (blog-pagination-01) === */
.wp-block-onpress-blog-pagination-01 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-pag__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.page-template-notes .blog-pag__grid {
    gap: 1rem;
}
@media (min-width: 768px) {
  .blog-pag__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-pag__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-pag__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  text-decoration: none !important;
  transition: box-shadow 0.15s;
}

.template-notes .blog-pag__card {
    box-shadow: none;
    border-radius: 5px;
    color: #333 !important;
}
a.blog-pag__card,
a.blog-pag__card:hover,
a.blog-pag__card:visited,
a.blog-pag__card:focus,
a.blog-pag__card *,
a.blog-pag__card:hover * {
  text-decoration: none !important;
  /* color: inherit !important; */
}
.blog-pag__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
}
.blog-pag__thumb {
  overflow: hidden;
}
.blog-pag__thumb-img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.blog-pag__thumb-img,
.blog-pag__thumb picture,
.blog-pag__thumb picture img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.blog-pag__body {
  flex: 1;
  padding: 1.2rem;
}
.blog-pag__body--no-thumb {
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
}
.blog-pag__title {
  margin-bottom: 0.5rem;
}

.page-template-notes .blog-pag__title {
    line-height: 22px;
    color: #333;
}
.blog-pag__lock {
  display: inline;
  vertical-align: -2px;
  margin-right: 4px;
  opacity: 0.5;
}
.blog-pag__excerpt {
  font-size: 0.875rem;
  /* color: hsl(var(--muted-foreground)); */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.template-notes .blog-pag__excerpt {
    color: #333;
}
.blog-pag__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}
.blog-pag__category {
  font-size: 0.875rem;
  font-weight: 500;
}
.blog-pag__date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ Centered */
.faq-centered {
}
.faq-centered__inner {
}
.faq-centered__headline {
}
.faq-centered__list {
}
div.faq-centered__item {
  border-radius: 4px;
  box-shadow: none;
}
.faq-centered__trigger {
}
.faq-centered__question {
}
.faq-centered__icon {
}
.faq-centered__answer {
}

.hero-primary {
}
div.hero-primary__container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-primary__content {
}
div.hero-primary__badge {
  padding: 3px 10px 3px;
  font-size: 12px;
}
.hero-primary__badge-icon {
  font-size: 16px;
  position: relative;
  top: 1.5px;
  margin: 0 -4px;
}
.hero-primary__headline.typo-h1 {
  margin-bottom: 15px;
}

p.hero-primary__subtitle {
  margin-bottom: 25px;
}
.hero-primary__buttons {
  margin-bottom: 40px;
}
.hero-primary__btn {
}
.hero-primary__media {
}
.hero-primary__media-btn {
}
.hero-primary__media-img {
}
.hero-primary__media-img-wrap {
}
.hero-primary__media-overlay {
}
.hero-primary__play {
}
.hero-primary__ping {
}
.hero-primary__duration {
}
.hero-primary__trust {
}
.hero-primary__highlight {
}

/* === Notes Media === */
.notes-media{
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Image grid ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â shared */
.notes-media__grid{
    display: grid;
    gap: 3px;
    border-radius: 5px;
    overflow: hidden;
    max-height: 350px;
}
.notes-media__img-wrap{
    position: relative;
    display: block;
    overflow: hidden;
}
.notes-media__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 1 image ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â full width, constrained */
.notes-media__grid--1{
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    border-radius: 0;
}
.notes-media__grid--1 .notes-media__img-wrap{
    width: fit-content;
}
.notes-media__grid--1 .notes-media__img{
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

/* 2 images ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â side by side */
.notes-media__grid--2{
    grid-template-columns: 1fr 1fr;
}
.notes-media__grid--2 .notes-media__img{
    aspect-ratio: 4/3;
}

/* 3 images ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â first big left, two stacked right */
.notes-media__grid--3{
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.notes-media__grid--3 .notes-media__img-wrap:first-child{
    grid-row: 1 / 3;
}
.notes-media__grid--3 .notes-media__img{
    aspect-ratio: auto;
}

/* 4 images ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 2x2 */
.notes-media__grid--4{
    grid-template-columns: 1fr 1fr;
}
.notes-media__grid--4 .notes-media__img{
    aspect-ratio: 4/3;
}

/* 5+ images ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â 3 columns */
.notes-media__grid--many{
    grid-template-columns: 1fr 1fr 1fr;
}
.notes-media__grid--many .notes-media__img{
    aspect-ratio: 1;
}

@media (max-width: 767px){
    .notes-media__grid--3{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .notes-media__grid--3 .notes-media__img-wrap:first-child{
        grid-row: auto;
        grid-column: 1 / -1;
    }
    .notes-media__grid--many{
        grid-template-columns: 1fr 1fr;
    }
}

/* Video */
.notes-media__video{
    display: block;
    width: 100%;
    max-height: 500px;
    border-radius: 12px;
    background: #000;
}

/* Video Note ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â circle */
.notes-media__videonote-wrap{
    width: 300px;
    height: 300px;
}
.notes-media__videonote{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000;
}
@media (max-width: 767px){
    .notes-media__videonote-wrap{
        width: 240px;
        height: 240px;
    }
}

/* Audio player */
.notes-media__audio-player{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    max-width: 400px;
    cursor: pointer;
}
.notes-media__audio-btn{
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary, #3390ec);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.notes-media__audio-bar{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.notes-media__audio-progress{
    height: 4px;
    background: #d4d4d4;
    border-radius: 2px;
    overflow: hidden;
}
.notes-media__audio-fill{
    height: 100%;
    width: 0;
    background: var(--color-primary, #3390ec);
    border-radius: 2px;
    transition: width 0.1s;
}
.notes-media__audio-duration{
    font-size: 12px;
    color: #737373;
}

/* File card */
a.notes-media__file-card{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    max-width: 400px;
    transition: background 0.15s;
}
a.notes-media__file-card:hover{
    background: #ebebeb;
}
.notes-media__file-icon{
    flex-shrink: 0;
    color: var(--color-primary, #3390ec);
    position: relative;
}
.notes-media__file-ext{
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-primary, #3390ec);
}
.notes-media__file-info{
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.notes-media__file-name{
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notes-media__file-size{
    font-size: 12px;
    color: #737373;
}

/* === Chart === */
.chart {
  margin-top: 2rem;
}
.chart__header {
  margin-bottom: 16px;
}
.chart__title {
  margin-bottom: 4px;
}
.chart__description {
  color: #6b7280;
  margin-bottom: 0;
}
.chart__figure {
  margin: 0;
}
.chart__svg {
  display: block;
  width: 100%;
  height: auto;
}
.chart__figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* chart__table removed ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â only charts, no data tables */

/* === Gallery 01 === */
.gallery-01__grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols, 4), 1fr);
}
.gallery-01__link {
  display: block;
  overflow: hidden;
}
.gallery-01__img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .gallery-01__grid {
    grid-template-columns: repeat(var(--gallery-cols-md, 3), 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-01__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === notes-footer === */
.wp-block-onpress-notes-footer {
  margin-top: auto;
  padding-top: 2rem;
}
.notes-footer-wrap {
  position: relative;
  margin-top: auto;
}
.notes-footer {
  background-color: hsl(var(--card));
}
.notes-footer__brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: none;
  padding: 0 0 0.75rem;
}
@media (min-width: 640px) {
  .notes-footer__brand-row {
    flex-direction: row;
  }
}
.notes-footer__brand {
  font-weight: 500;
  font-size: 0.875rem;
}
.notes-footer__tagline {
  margin-top: 0.125rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}
.notes-footer__social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.notes-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}
.notes-footer__social-link:hover {
  background-color: hsl(var(--accent));
}
.notes-footer__social-link svg {
  width: 14px;
  height: 14px;
}
.notes-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .notes-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.notes-footer__bottom-left {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  order: 1;
}
@media (min-width: 640px) {
  .notes-footer__bottom-left {
    order: 0;
  }
}
.notes-footer__copyright-text {
  display: inline;
  margin: 0;
}
.notes-footer__copyright-text a, .notes-footer__author {
  color: hsl(var(--muted-foreground));
  text-decoration: underline;
  text-decoration-color: #e2a727 !important;
  border: none !important;
  text-underline-offset: initial !important;
  text-decoration-thickness: initial !important;
}
.notes-footer__author {
  text-decoration: none;
  white-space: nowrap;
  margin-left: 5px;
}
a.notes-footer__author:hover {
  text-decoration: underline;
}

/* === Pages Links (notes-pages) === */
.pages-links {
  margin-top: 1.5rem;
}
.pages-links__parent {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
}
.pages-links__parent a {
  text-decoration: none;
  color: inherit;
}
.pages-links__parent a:hover {
  text-decoration: underline;
}
.pages-links__list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 1.25em;
}
.pages-links__item {
  padding: 0.2rem 0;
}
.pages-links__lock {
  opacity: 0.4;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 4px;
}
.pages-links__link {
  text-decoration: none;
  color: inherit;
}

.template-notes .pages-links a {
    color: #333 !important;
    text-decoration: underline !important;
    text-decoration-color: #e2a727 !important;
}
.pages-links__link:hover {
  text-decoration: underline;
}
.pages-links__empty {
  color: hsl(var(--muted-foreground));
}
.blog-pag__pagination-link,.blog-pag__pagination-nav{
  border-radius: 4px !important;
}