/**
 * Theme Name: Flashnote GP
 * Template: generatepress  
 * Version 1.0
 */

.site-branding .main-title, h1 {
    font-family: 'Lilita One', sans-serif;
    font-size: 52px;
    font-weight: normal;
     color: #702f03;
}

.site-branding .main-title a,
.site-branding .main-title a:hover,
.site-branding .main-title a:visited,
.site-branding .main-title a:active {
    color: #702f03;
}
body {
    background-color: #ffffff;
}

.separate-containers .inside-article {
   padding: 0px 20px;
}

.entry-content img {
    margin-bottom: 0;
}

.video-medium {
    width: 350px;
    margin: 0 auto;
}

li {
  margin-bottom: .25em;
}

.top-band {
  padding: 15px 0;
}

.site-main .wp-block-group__inner-container {
padding: 0px !important;
}

/* Remove default Columns spacing inside the top band */
.top-band .wp-block-columns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.columns-pad {
  padding: 10px;
}

.columns-pad li {
  margin-left: 25px;
}

.columns-pad h3 {
  margin-bottom: 10px;
  text-decoration: underlined;
}

.grid-spaced {
  row-gap: 25px;
  column-gap: 8px;
}

.group-narrow {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.6em;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fbf71; /* green check */
  font-weight: bold;
    font-size: 22px;
}

.well-padded {
  padding: 25px;
}

img, video, iframe {
  max-width: 100% !important;
  height: auto;
}

.entry-content h1 {
  font-size: clamp(28px, 6vw, 44px) !important;
  line-height: 1.15;
}

.entry-content h2 {
  font-size: clamp(22px, 4.5vw, 34px) !important;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .site-content {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Header logo/icon sizing (GeneratePress / WP custom logo) */
/* ===== Header branding: DESKTOP defaults ===== */

/* Logo/icon */
.site-logo img,
.custom-logo-link img,
.site-branding img {
  width: auto !important;
  height: 72px !important;      /* desktop */
  max-height: 72px !important;
}

/* Title */
.site-branding .main-title,
.site-branding .main-title a {
  font-family: 'Lilita One', sans-serif !important;
  font-weight: 400 !important;
  color: #702f03 !important;

  font-size: 64px !important;   /* desktop */
  line-height: 1.05 !important;
}

/* Align icon + title */
.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== Mobile overrides only ===== */
@media (max-width: 600px) {
  .site-logo img,
  .custom-logo-link img,
  .site-branding img {
    height: 44px !important;
    max-height: 44px !important;
  }

  .site-branding .main-title,
  .site-branding .main-title a {
    font-size: 30px !important;
    line-height: 1.1 !important;
  }
}