/*
Theme Name:  Slurpy WP
Theme URI: https://www.slurpystudios.com
Author: Aaron Wood
Author URI: https://www.slurpystudios.com
Description: Theme for Slupry WP Plugins website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


* {background: transparent; border: 0; margin: 0; padding: 0; vertical-align: baseline;}
body {line-height: 1;}
h1, h2, h3, h4, h5, h6 {clear: both;font-weight: normal;}
ol, ul {list-style: none;}
blockquote {quotes: none;}
blockquote:before, blockquote:after {content: '';content: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0; box-sizing: border-box;}
a img {border: none;}
.clear {clear: both;line-height: 0px;}
a {text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block;}
button, input, textarea, select {font: inherit; color: inherit; border: none; background: none; outline: none;}
button {cursor: pointer;}
strong {font-weight: 700;}
em {font-style: italic;}

html {
    font-size: 62.5%; /* 1rem = 10px */
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: 'Lexend', sans-serif;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 400;
    color: #333;
    background-color: #fff;
}
/* =========================
   TYPOGRAPHY
   ========================= */
b, strong, a {
  font-weight: 800;           /* ExtraBold */
}
h1 {
  font-size: 4rem;            /* 40px */
  line-height: 5rem;          /* 50px */
  font-weight: 800;           /* ExtraBold */
}
h2 {
  font-size: 3rem;            /* 30px */
  line-height: 3.6rem;        /* 36px */
  font-weight: 800;
}
h3 {
  font-size: 2rem;            /* 20px */
  line-height: 2.6rem;        /* 24px */
  font-weight: 800;
}
h4 {
  font-size: 1.8rem;          /* 18px */
  line-height: 2.4rem;        /* 24px */
  font-weight: 800;
}
h5, h6 {
  font-size: 1.6rem;          /* 16px */
  line-height: 2.2rem;        /* 22px */
  font-weight: 800;
  text-transform: uppercase;
}
button,
.button {
  font-size: 2rem;            /* 20px */
  line-height: 2.4rem;        /* 24px */
  font-weight: 800;           /* ExtraBold */
  cursor: pointer;
}
.lighter {
  font-weight: 300;           /* Light weight */
}
@media (max-width: 850px) {
h1 {
  font-size: 3.0rem;
  line-height: 3.6rem;
}	
h2 {
  font-size: 2.6rem;
  line-height: 3.2rem;
}
h3 {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
}



/* =========================
   HEADER
   ========================= */
#accessibility a {
  position: absolute;
  top: -40px;
  left: 0;
  background: #275759;
  color: #fff;
  padding: 10px;
  z-index: 100;
  text-decoration: none;
}
#accessibility a:focus {
  top: 0; /* bring it into view when tabbed */
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    border-bottom: 2px solid #a41314;
    z-index: 999;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 850px) {
#header {
	height: 60px;
}
}
#header.shrink {
    height: 60px;
}
#header .header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 1220px) {
#header .header-inner {
	padding: 0 20px;
}
}
#header h1.visually-hidden{
	font-size: 0.0001rem;
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
}
#header .logo img {
    height: 50px;
    display: block;
    max-width: 100%;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}
#header.shrink .logo img {
    height: 36px;
}
@media (max-width: 850px) {
#header .logo img {
	height: 36px;
}
}

/* =========================
   NAVIGATION
   ========================= */
.main-nav > ul {
    display: flex;       /* only the top-level UL */
    gap: 0rem;
}
.main-nav > ul > li {
    position: relative;  /* so dropdowns position correctly */
}
.main-nav a {
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    color: #444;
}
.dropdown {
    position: relative;
}
@media (max-width: 850px) {
.dropdown {
	display: block;
}
.dropdown > a {
	display: block;
	width: 100%;
	text-align: center; /* keep consistent with other links */
}
}
.dropdown:hover > a {
    background: #e7e7e7;
}
@media (max-width: 850px) {
.dropdown:hover > a {
	background: none;
}
}
.dropdown-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);  /* centers relative to parent */
    min-width: 250px;
    background: #fff;
    border: 2px solid #a41213;
    border-radius: 10px;
    overflow: hidden; /* keeps corners neat */
    margin-top: 9px;
}
@media (max-width: 850px) {
.dropdown-menu {
	margin-top: 0;
}
.dropdown-menu li:first-child {
	border-top: 1px solid #e7e7e7;
}
}
.dropdown-menu li {
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-transform: capitalize;
}
.dropdown-menu a:hover {
    color: #a41213;
    background: #e7e7e7;
}
@media (max-width: 850px) {
.dropdown-menu a:hover {
	color: #444;
	background: none;
}
}
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* =============================
   NAVIGATION: MOBILE & TOGGLES
   ============================= */
.menu-toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle::before {
    top: 0;
}
.menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
}
.menu-toggle::after {
    bottom: 0;
}
.menu-toggle.active::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-toggle.active span {
    opacity: 0;
}
.menu-toggle.active::after {
    transform: translateY(-10px) rotate(-45deg);
}

/* ===============================
   NAVIGATION: ADD +/- ON MOBILE
   =============================== */
.main-nav li.dropdown::after {
    content: "+";
    margin-left: 6px;
    transition: all 0.2s ease;
    position: absolute;
    right: 20px;
    top: 13px;
    pointer-events: none;
	font-size:26px;
}
.main-nav li.dropdown.open::after {
    content: "–";
}
@media (min-width: 851px) {
.main-nav li.dropdown::after {
	content: "";
}
.main-nav li.dropdown.open::after {
	content: "";
}
}





/* ==========================
   NAVIGATION: MOBILE LAYOUT
   ========================== */
@media (max-width: 850px) {
.menu-toggle {
	display: block;
}
.main-nav {
	display: none;
	position: fixed;   /* fixed instead of absolute */
	top: 62px;         /* below header */
	left: 0;
	width: 100%;       /* full width */
	background: #fff;
	border: none;
	flex-direction: column;
	z-index: 1000;
}
.main-nav.active {
	display: flex;
}
.main-nav ul {
	flex-direction: column;
	gap: 0;
	border-bottom: 2px solid #a41213;
}
.main-nav li {
	border-bottom: 1px solid #eee;
}
.main-nav a {
	text-align: center;
	display: block;
	padding: 12px 0; /* clean padding */
}
.main-nav > ul > li > a:hover {
	background: none;
}
/* Dropdown menu animation */
.dropdown-menu {
	display: none;
	position: static;
	width: 100%;
	background: #fff;
	border-radius: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	left: auto;
	transform: none;
	border: none;
}
.dropdown.open > .dropdown-menu {
	display: block;           /* only visible when .open */
	max-height: 500px;
	opacity: 1;
}
}



/* ==========================
   HEADER DESKTOP ONLY STYLES
   ========================== */
@media (min-width: 851px) { 
	/* DESKTOP ONLY STYLE = Add grey pill on hover */
    .main-nav > ul > li > a { 
        padding: 10px 30px;
        border-radius: 30px;
        transition: background 0.2s ease;
    }
    .main-nav > ul > li > a:hover {
        background: #e7e7e7;
    }
	/* DESKTOP ONLY STYLE = Add triangle on top sub menu */
    .dropdown::before { 
        content: "";
        position: absolute;
        top: calc(100% + 2px); /* place just below the pill */
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #a41213;
        z-index: 1000;
        display: none;
    }
    .dropdown:hover::before {
        display: block;
    }
}





/* =========================
   FOOTER
   ========================= */
footer {
    background: #121212;
    color: #a1a1a1;
}
footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0 0 0 /* 100px top padding */
}
@media (max-width: 1220px) {
footer .footer-inner {
	padding-left: 20px;
	padding-right: 20px;
}
}
footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
	padding: 50px 0 25px 0;
}
@media (max-width: 750px) {
footer .footer-columns {
	padding: 25px 0 10px 0;
}	
}
@media (max-width: 950px) {
footer .footer-columns {
	grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 800px) {
footer .footer-columns {
	grid-template-columns: 1fr;
	text-align: center;
}
footer .footer-columns h5,
footer .footer-columns ul,
footer .footer-columns li {
	text-align: center;
}
}
footer .footer-columns h5 {
    color: #fff;
    margin-bottom: 20px; /* 25px under headings */
}
footer .footer-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-columns li {
    margin-bottom: 20px; /* 25px between links */
}
footer .footer-columns li:last-child {
    margin-bottom: 20px; /* extra 25px after last li */
}
footer .footer-columns a {
    color: #a1a1a1;
    text-decoration: none;
    font-weight: 400; /* regular */
    transition: color 0.2s ease;
}
footer .footer-columns a:hover {
    color: #fff;
}
footer .footer-bottom {
    border-top: 2px solid #414141;
	padding: 25px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 750px) {
footer .footer-bottom {
	padding: 10px 0 15px 0;
}	
}
@media (max-width: 750px) {
footer .footer-bottom {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
footer .footer-bottom-left,
footer .footer-bottom-right {
	margin: 10px 0;
}
footer .footer-bottom-right ul {
	justify-content: center;
}
footer .footer-bottom-right li {
	margin-left: 20px;
}
footer .footer-bottom-right li:first-child {
	margin-left: 0;
}
}
footer .footer-bottom-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-bottom-left li {
    color: #666;
    font-weight: 400;
}
footer .footer-bottom-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
footer .footer-bottom-right li {
    margin-left: 35px;
}
footer .footer-bottom-right a {
    color: #666666;
    text-decoration: none;
    font-weight: 400;
}
footer .footer-bottom-right a:hover {
    color: #fff;
}
/* Icons */
footer .footer-bottom-right li.social {
    margin-left: 25px;
}
footer .footer-bottom-right li.social.insta{
    padding-left: 10px;
}
footer .footer-bottom-right a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: opacity 0.3s ease;
}
.footer-bottom-right a:hover svg {
    opacity: 0.5;
}
footer .footer-bottom-right a svg {
	fill: #fff;
	transition: opacity 0.3s ease;
	width: 30px;
	height: 30px;
	padding-top: 7px;
}
footer .footer-bottom-right a:hover svg {
	opacity: 0.5;
}




/* =========================
   MAIN CONTENT
   ========================= */
main {
    transition: padding-top 0.3s ease;
	padding-top: 100px;
}
@media (max-width: 850px) {
main {
	padding-top: 60px;
}
}
main .content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 50px;
}
@media (max-width: 850px) {
main .content-inner {
	padding: 20px 20px 30px;
}
}
/* Shrink state (when header is 60px tall) */
#header.shrink + main .content-inner {
    padding-top: 60px; /* adjust when header shrinks */
}
main .slim {
    max-width: 785px;
    margin: 0 auto;
	padding: 0 0 0 0;
}
@media (max-width: 850px) {
main .slim {
	padding: 0;
}
}
main h1.title {
	text-align:center;
	margin-top: 40px;
}
@media (max-width: 850px) {
main h1.title {
	margin-top: 20px;
}
}
main .darkteal {
	color: #275759;
}
main h1, main h2, main h3, main h4, main h5, main h6 {
    margin: 20px 0 20px 0;
}
main p {
    margin-bottom: 20px;
}
main a {
    color:#a41314;
}
main a:hover {
	text-decoration:underline;
}
main em {
	opacity: 0.5;
}
main ul, 
main ol {
    margin: 0 0 20px 15px;
}
/* Unordered lists */
main ul li {
    margin-bottom: 0.75rem;
    padding-left: 2.0rem;
    position: relative;
    line-height: 1.6;
}
main ul li::before {
    content: "•";                   /* custom bullet */
    position: absolute;
    left: 0;
    top: 0;
    color: #a41314;                 /* Slurpy red brand */
    font-weight: bold;
	font-size: 1.6em;
    line-height: 1;         		/* keep vertically aligned */
}
/* Ordered lists */
main ol {
    counter-reset: slurpy-counter;
}
main ol li {
    margin-bottom: 0.75rem;
    padding-left: 2.2rem;
    position: relative;
    line-height: 1.6;
    counter-increment: slurpy-counter;
}
main ol li::before {
    content: counter(slurpy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #55bac0;                 /* Slurpy teal accent */
    font-weight: 600;
}
/* Checklist style */
main ul.checklist li {
    margin-bottom: 0.75rem;
    padding-left: 3.0rem;
    position: relative;
    line-height: 1.6;
}
main ul.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;      			/* green check */
    font-weight: bold;
	font-size: 1.4em;       		/* bigger than text */
    line-height: 1;         		/* keep vertically aligned */
}
main .swp-button {
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 700;
	font-size: 2.0rem;
	line-height:2.4rem;
	border-radius: 9999px;
    transition: all 0.2s ease;
}
main .swp-button:hover {
    opacity: 0.5;
	text-decoration: none;
}





/* =========================
   HERO BANNER
   ========================= */
.hero-banner {
    width: 100%;
    max-width: 1920px;
    height: 400px;
    margin: 0 auto;
    background: url("images/wordpress-plugins-slurpywp-homepage-hero-bg.jpg") center center/cover no-repeat;
	border-bottom: 2px solid #a41213;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
@media (max-width: 850px) {
.hero-banner {
    height: auto;
	padding: 25px 0 30px;
}
}
.hero-banner-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
}
.hero-banner h1 {
    margin: 0;
    padding: 0 0 40px 0;
}
@media (max-width: 850px) {
.hero-banner h1 {
    padding: 0 0 20px 0;
}
}
.hero-banner h3 {
    margin: 0;
    padding: 0;
	padding: 0 0 40px 0;
	font-weight: 300; 
}
@media (max-width: 850px) {
.hero-banner h3 {
	padding: 0 0 20px 0;
}	
.hero-banner h3 br {
    display:none;
}
}
.hero-banner .swp-button {
    background: #fff;
    color: #a41213;
	width: 240px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	box-shadow: 3px 3px 0px #a41213;
}
.hero-banner .button-group {
	text-align: center;
	white-space: nowrap; /* keeps buttons side-by-side */
	margin-top: 15px;
}
.hero-banner .button-group .button-col {
	display: inline-block;
	vertical-align: top;
	margin-right: 40px;
	text-align: center;
}
.hero-banner .button-group .button-col:last-child {
	margin-right: 0;
}
.hero-banner .download-btn,
.hero-banner .wp-download-btn {
	width: 240px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	box-shadow: 3px 3px 0px #a41213;
}
.hero-banner .wp-download-btn {
	background-image: url("images/wordpress-logo-small-icon-red.png")!important;
	background-repeat: no-repeat!important;
	background-position: right 4px center!important;
	background-size: 38px auto!important;
	padding-right: 50px!important; /* space for the icon */
}
.hero-banner .version-note {
	margin-top: 2px;
	font-size: 1.2rem;
	color: #fff;
}
@media (max-width: 850px) {
.hero-banner .button-group {
	white-space: normal;
}
.hero-banner .button-group .button-col {
	display: block;
	margin: 0 0 20px 0;
}
}





/* =========================
   PLUGINS LIST CARDS
   ========================= */
.plugins-section {
	width: 100%;
	background: #eceff7;
	padding: 0 0 50px 0;
}
@media (max-width: 850px) {
.plugins-section {
	padding: 0 0 30px 0;
}	
}
.plugins-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 50px 0 0 0; 
}
@media (max-width: 1220px) {
.plugins-inner {
	padding: 50px 20px 0;
}
}
@media (max-width: 850px) {
.plugins-inner {
	grid-template-columns: 1fr;
	padding: 30px 20px;
}
}
.plugin-box {
	background: #55bac0;
	border: 2px solid #275759;
	padding: 30px 40px;
	text-align: center;
	color: #275759;
	border-radius: 25px;
	box-shadow: 10px 10px 0px #c6e2e9;
}
@media (max-width: 850px) {
.plugin-box {
	box-shadow: none;
}	
}
.plugin-box h2 {
	font-size: 2.8rem;
	margin: 0 0 30px 0;
}
.plugin-box h2 a {
    color: #275759;;
	transition: all 0.2s ease;
}
.plugin-box h2 a:hover {
    opacity: 0.5;
	text-decoration: none;
}
.plugin-box img {
	max-width: 100%;
	height: auto;
	box-shadow: 3px 3px 0px #275759;
	margin: 0 auto 30px;
	transition: all 0.2s ease; 
}
.plugin-box img:hover {
    opacity: 0.5;
}
.plugin-box p {
	margin: 0 0 30px 0;
}
.plugin-box .swp-button {
	background: #fff;
	color: #275759;
	box-shadow: 4px 4px 0px #275759;
}






/* =========================
   HOMEPAGE = REASON BOXES
   ========================= */
.reasons-section {
	width: 100%;
	background: #fff;
	padding: 60px 0 75px;
}
@media (max-width: 850px) {
.reasons-section {
	padding: 30px 0;
}	
}
.reasons-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
@media (max-width: 1000px) {
.reasons-inner {
	padding: 0 20px;
}
}
.reasons-section h1 {
	margin: 0 0 40px 0;
	color: #a41213;
}
.reasons-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.reason-box {
	display: flex;
	align-items: center;
	border: 2px solid #a41213;
	border-radius: 25px;
	background: #fff;
	min-height: 90px;
	color: #a41213;
	overflow: hidden;
	align-items: stretch;
}
.reason-number {
	flex: 0 0 85px;
	font-size: 6rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reason-text {
	flex: 1;
	text-align: left;
	padding-right: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.reason-text h3,
.reason-text p {
	margin: 0;
}
.reason-icon {
	flex: 0 0 100px;
	background-color: #a41213;
	background-size: 55px auto;
	background-position: center;
	background-repeat: no-repeat;
}
.reason-box:nth-child(1) .reason-icon {
	background-image: url("images/plugin-reasons-feather.png");
}
.reason-box:nth-child(2) .reason-icon {
	background-image: url("images/plugin-reasons-cogs.png");
}
.reason-box:nth-child(3) .reason-icon {
	background-image: url("images/plugin-reasons-spanners.png");
}
@media (max-width: 1000px) {
.reasons-grid {
	grid-template-columns: 1fr;
}
}





/* ===============================
   TESTIMONIALS - MOBILE VERSION
   =============================== */
:root {
	--test-box-w: 785px;   /* used only for desktop layout styles */
	--test-box-h: 345px;
	--test-box-m: 20px;
	--test-peek: 166px;
}
.testimonials-section {
	width: 100%;
	background: #eceff7;
	padding: 50px 0;
}
@media (max-width: 850px) {
.testimonials-section {
	padding: 30px 0;
}	
}
.testimonials-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;       /* always keep 20px gutter */
	text-align: center;
	position: relative;
}
.testimonials-section h1 {
	margin: 0 0 40px 0;
	color: #275759;
}
.testimonial-slider {
	position: relative;
	overflow: hidden;
}
/* Side fade peeks */
.testimonial-slider::before,
.testimonial-slider::after {
	content: "";
	position: absolute;
	top: 0;
	width: var(--test-peek);
	height: 100%;
	z-index: 2;
	pointer-events: none;
}
.testimonial-slider::before {
	left: 0;
	background: linear-gradient(to right, #eceff7 0%, rgba(236,239,247,0) 100%);
}
.testimonial-slider::after {
	right: 0;
	background: linear-gradient(to left, #eceff7 0%, rgba(236,239,247,0) 100%);
}
@media (max-width: 1160px) {
.testimonial-slider::before,
.testimonial-slider::after { background: none; }
}
.testimonial-track {
	display: flex;
	transition: transform 0.6s ease;
	will-change: transform;
}
.testimonial-box {
	flex: 0 0 var(--test-box-w);
	height: var(--test-box-h);
	margin: 0 var(--test-box-m);
	background: #c6e2e9;
	border-radius: 25px;
	padding: 40px 140px;
	box-sizing: border-box;
	text-align: center;
	color: #275759;
	display: flex;
	justify-content: center;
	align-items: center;
}
.testimonial-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.testimonial-box p.quote {
	font-weight: 300;
	margin: 0;
}
.testimonial-credit {
	display: flex;
	align-items: center; 
	justify-content: center;
	gap: 25px; 
	margin-top: 20px;
}
.testimonial-credit img {
	width: 60px; 
	height: 60px; 
	border-radius: 50%; 
	object-fit: cover;
}
.credit-text { text-align: left; font-size: 1.2rem; line-height: 1.6rem; }
.credit-text .name { font-weight: 800; margin: 0; }
.credit-text .company { font-style: italic; font-weight: 300; margin: 0; }
.testimonial-box.placeholder { opacity: 1; }
/* arrows: JS will position them on desktop; on mobile, pin to edges */
.slider-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px; 
	height: 40px; 
	border-radius: 50%;
	background: #55bac0;
	display: flex; 
	align-items: center; 
	justify-content: center;
	cursor: pointer; 
	z-index: 3; 
	transition: opacity 0.3s ease;
	left: auto; 
	right: auto;
}
.slider-button:hover { opacity: 0.5; }
.slider-button svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}
.testimonials-section .swp-button {
	background: #55bac0; 
	color: #275759;
	box-shadow: 3px 3px 0px #275759;
	margin-top: 50px;
}
@media (max-width: 850px) {
.testimonials-section .swp-button {
	margin-top: 30px;
}	
}





/* ===============================
   TESTIMONIALS - MOBILE VERSION
   =============================== */
@media (max-width: 850px) {
:root {
	--test-box-w: 100%;
	--test-box-h: auto;
	--test-box-m: 0;
	--test-peek: 0;
}
.testimonial-slider::before,
.testimonial-slider::after {
	display: none;
}
.testimonial-box {
	margin: 0;
	padding: 30px 60px;
	height: auto;
}
.testimonial-box.placeholder { display: none; }
/* arrows to container edges on mobile */
.slider-button.prev { left: 10px !important; right: auto !important; }
.slider-button.next { right: 10px !important; left: auto !important; }
}





/* =========================
   ABOUT - AARON QUOTE
   ========================= */
.quote-block {
	width: 100%;
	max-width: 785px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 10px 0 35px;
	box-sizing: border-box;
}
.quote-block img {
	width: 175px;
	height: 175px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid #55bac0;
	flex-shrink: 0;
}
.quote-text {
	flex: 1;
}
.quote-text p {
	font-size: 2.2rem;
	line-height: 3.2rem;
	color: #55bac0;
	font-style: italic;
	font-weight: 300; /* ExtraBold */
	margin: 0;
	padding-bottom: 6px;
}
.quote-text span {
	display: block;
	font-size: 2.2rem;
	line-height: 3.2rem;
	font-weight: 800; /* ExtraBold */
	color: #275759;
}
@media (max-width: 700px) {
.quote-block {
	flex-direction: column;
	text-align: center;
	gap: 20px;
}
.quote-text {
	text-align: center;
}
}





/* =========================
   PLUGINS INDEX
   ========================= */
.pluginsIndex.top,
.pluginsIndex.bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
	text-align:center;
	color: #275759;
	border-top: 1px solid transparent;
}
@media (max-width: 1220px) {
.pluginsIndex.top,
.pluginsIndex.bottom {
	padding: 0 20px;
}
}
.pluginsIndex h1{
	padding: 0;	
	margin: 0;
}
.pluginsIndex h2{
	padding: 60px 0 0 0;	
	margin: 0;
}
@media (max-width: 850px) {
.pluginsIndex h2{
	padding: 30px 0 0 0;	
	margin: 0;
}
}
.pluginsIndex h3{
	padding: 40px 0 0 0;
	margin: 0;
	font-weight: 400;
	line-height: 3.0rem;
}
@media (max-width: 850px) {
.pluginsIndex h3{
	padding: 20px 0 0 0;
}
.pluginsIndex h3 br{
	display:none;
}	
}
.pluginsIndex .swp-button{
	background: #55bac0;
	color: #275759;
	box-shadow: 4px 4px 0px #275759;
	margin: 30px auto 0;	
}






/* =========================
   SUPPORT PAGE
   ========================= */
.support h1 {
	color: #a41213;
	margin-bottom: 0;
}
.support h3.sub {
	text-align: center;
	font-weight: 400;
	line-height: 3.0rem;  
	margin: 35px 0 50px 0;
}
@media (max-width: 850px) {
.support h3.sub {
	margin: 25px 0 30px 0;
}
.support h3.sub br{
	display:none;
}
}
.docs-library {
	background: #eef3fb;
	padding: 25px;
	border-radius: 25px;
	text-align: center;
	color: #275759;
}
@media (max-width: 850px) {
.docs-library {
	padding: 20px;
}
}
.docs-library .docs-library h2 {
	margin-bottom: 20px;
}
.docs-library .docs-library p {
	margin-bottom: 30px;
}
.docs-library .docs-boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* always 3 per row on desktop */
	gap: 25px; /* spacing between boxes */
}
@media (max-width: 850px) {
.docs-library .docs-boxes {
	grid-template-columns: 1fr;
}
}
.docs-library .docs-box {
	background: #fff;
	border: 1px solid #1f5559;
	border-radius: 25px;
	padding: 25px;
	text-align: center;
}
@media (max-width: 850px) {
.docs-library .docs-box {
	padding: 20px;
}
}
.docs-library .docs-box h3 {
	color: #275759;
	margin: 0 0 20px 0;
}
.docs-library .docs-box a.swp-button {
	display: inline-flex;
	align-items: center;   /* keep text + chevron aligned */
	justify-content: center;
	gap: 25px;             /* space between text and chevron */
	background: #275759;
	color: #fff;
	padding-right:20px;
}
.docs-library .docs-box a.swp-button svg {
	width: 28px;   /* chevron size — adjust as needed */
	height: 28px;
	flex-shrink: 0;
}
.docs-library .docs-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 15px;
}
.docs-library .docs-icons img {
	width: 47px;
	height: 47px;
	transition: all 0.2s ease;
}
.docs-library .docs-icons img:hover {
	opacity: 0.5;
}





/* =========================
   FAQ ACCORDIAN
   ========================= */
.faq-group {
	width: 100%;
	font-family: inherit;
	margin-top:20px;
}
.faq {
/*	border-bottom: 2px solid #a41213;
	border-bottom: 2px solid #275759;
	border-bottom: 2px solid #444444;*/
	margin-bottom:10px;
}
.faq-question {
	width: 100%;
	border: none;
	padding: 15px 20px;
	text-align: left;
	font-size: 1.6rem;
	line-height: 2.2rem;
	font-weight: 700;
	text-transform:none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	background: #275759;
	color: #fff;
}
.faq-question:hover {
	background: #a41213;
}
.faq-question:hover .faq-chevron {
	border-color: #fff;
}
.faq-chevron {
	transition: transform 0.3s ease;
	width: 10px;
	height: 10px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	margin: 0 10px;
	transition: color 0.3s ease;
}
.faq.open .faq-chevron {
	transform: rotate(225deg);
  	border-color: #fff; /* accent color when open */
}
.faq.open .faq-question {
	color: #fff;
	background: #a41213;
}
.faq-answer {
	overflow: hidden;
	height: 0;                  /* collapsed */
	transition: height 0.3s ease;
	padding: 0 20px;
	background: #eef3fb;
	color: #275759;
	color: #444444;
}
.faq-answer p {
	margin: 20px 0 30px;
	padding: 0;
}





/* ============================
   CONTACT & ENQUIRY GF FORMS
   ============================ */
/* Contact Support Section */
.contact-support {
  width: 100%;
  background-color: #eef3fb;
  border-top: 1px solid transparent;
}
.contact-support-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #275759;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.contact-support h1.title {
	margin-bottom: 0;
}
.contact-support h3.sub {
	line-height: 3.0rem;
	font-weight: 400;
	margin: 40px 0 40px 0;
}
@media (max-width: 850px) {
.contact-support h3.sub {
	padding: 0 20px;
	margin: 20px 0 30px 0;
}
.contact-support h3.sub br{
	display:none;
}
}
/* ===========================================
   Shared styles for both forms
   =========================================== */
#gform_1,
#gform_3 {
  padding-bottom: 50px;
}
@media (max-width: 850px) {
  #gform_1,
  #gform_3 {
    padding-bottom: 30px;
  }
}

#gform_1 .gform_fields,
#gform_3 .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  row-gap: 20px;
}

#gform_1 .gfield,
#gform_3 .gfield {
  margin: 0 !important;
  padding: 0 !important;
}

#gform_1 .gform_footer,
#gform_3 .gform_footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

#gform_1 .gfield_label,
#gform_3 .gfield_label {
  display: none !important;
}

#gform_1 input[type="text"],
#gform_1 input[type="email"],
#gform_1 input[type="file"],
#gform_1 select,
#gform_1 textarea,
#gform_3 input[type="text"],
#gform_3 input[type="email"],
#gform_3 select,
#gform_3 textarea {
  width: 100%;
  border: 1px solid #55bbc0;
  border-radius: 18px;
  height: 55px;
  padding: 0 20px;
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #275759;
  background: #c5e2e8;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

#gform_1 textarea,
#gform_3 textarea {
  padding: 15px 20px;
  resize: vertical;
}
#gform_1 textarea{
  min-height: 292px;
}
#gform_3 textarea {
  min-height: 215px;
}
#gform_1 input::placeholder,
#gform_1 textarea::placeholder,
#gform_1 select,
#gform_3 input::placeholder,
#gform_3 textarea::placeholder {
  color: #275759;
  font-size: 1.6rem;
  line-height: 2.2rem;
  opacity: 1;
}
#gform_1 input:focus,
#gform_1 select:focus,
#gform_1 textarea:focus,
#gform_3 input:focus,
#gform_3 textarea:focus {
  outline: none;
  border-color: #55bac0;
  box-shadow: 0 0 0 2px rgba(85, 186, 192, 0.25);
}

#gform_1 .gform_button,
#gform_3 .gform_button {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 2.4rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  background: #55bbc0;
  color: #275759;
  box-shadow: 4px 4px 0px #275759, 0px 4px 12px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}
#gform_1 .gform_button:hover,
#gform_3 .gform_button:hover {
  opacity: 0.5;
  text-decoration: none;
}

@media (max-width: 1220px) {
  #gform_1 .gform_fields,
  #gform_3 .gform_fields {
    padding: 0 20px;
  }
}

@media (max-width: 850px) {
  #gform_1 .gform_fields,
  #gform_3 .gform_fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #gform_1 .gform_fields .gfield,
  #gform_1 .gform_fields input,
  #gform_1 .gform_fields textarea,
  #gform_1 .gform_fields select,
  #gform_3 .gform_fields .gfield,
  #gform_3 .gform_fields input,
  #gform_3 .gform_fields textarea,
  #gform_3 .gform_fields select {
    width: 100%;
  }
  #gform_1 .gform_footer,
  #gform_3 .gform_footer {
    margin-top: 25px;
  }
}
/* ===========================================
   Unique layout overrides for each form
   =========================================== */
/* gform_1 grid positions */
#gform_1 .gform_fields {
  grid-template-rows: repeat(4, auto);
}
#gform_1 #field_1_4 { grid-column: 1; grid-row: 1; }
#gform_1 #field_1_7 { grid-column: 1; grid-row: 2; }
#gform_1 #field_1_8 { grid-column: 1; grid-row: 3; }
#gform_1 #field_1_9 { grid-column: 1; grid-row: 4; }
#gform_1 #field_1_3 {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: start;
}
@media (max-width: 850px) {
  #gform_1 #field_1_3 { grid-column: 1; grid-row: auto; }
}
#gform_1 textarea { min-height: 292px; }

/* gform_3 grid positions */
#gform_3 .gform_fields {
  grid-template-rows: repeat(3, auto);
}
#gform_3 #field_3_10 { grid-column: 1; grid-row: 1; }
#gform_3 #field_3_7  { grid-column: 1; grid-row: 2; }
#gform_3 #field_3_8  { grid-column: 1; grid-row: 3; }
#gform_3 #field_3_11 {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
}
@media (max-width: 850px) {
  #gform_3 #field_3_11 { grid-column: 1; grid-row: auto; }
}
#gform_3 textarea { min-height: 220px; }

/* gform_1 file upload extras (only used there) */
#gform_1 .ginput_container_fileupload {
  position: relative;
  display: flex;
  align-items: center;
  height: 55px;
}
#gform_1 .gfield_description.gform_fileupload_rules {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #275759;
  opacity: 0.8;
  pointer-events: none;
  margin: 0 !important;
}
@media (max-width: 850px) {
#gform_1 .gfield_description.gform_fileupload_rules {
  display:none;
}
}
#gform_1 input[type="file"] {
  padding: 0 20px;
  height: 55px;
  line-height: 55px;
  color: #275759;
  background: #c5e2e8;
  border: 1px solid #55bbc0;
  border-radius: 18px;
}
/* ===============================
   GRAVITY FORMS ERRORS & SUCCESS
   =============================== */
.gform_wrapper > .gform_validation_errors {
	border: 2px solid #a41314;
	background: #fbecec;
	color: #a41314;
	padding: 20px ;
	border-radius: 25px;
	margin-bottom: 20px;
	font-weight: 600;
}
@media (max-width: 1220px) {
.gform_wrapper > .gform_validation_errors {
	margin: 0 20px 20px 20px;
}
}
.gform_wrapper > .gform_validation_errors h2 {
	font-size: 2.0rem;
	font-weight: 700;
	margin: 0 0 10px;
	text-align: left;
}
.gform_wrapper > .gform_validation_errors ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gform_wrapper > .gform_validation_errors li {
	margin-bottom: 8px;
	font-weight: 500;
	color: #a41314;
	text-align: left;
}
/* Hide duplicate inner message block */
.gform_wrapper .validation_error {
	display: none !important;
}
.gform_wrapper > .gform_validation_errors:focus {
	outline: none !important;
	box-shadow: none !important;
}
/* Hide field-level messages under inputs */
.gform_wrapper .gfield_validation_message {
	display: none !important;
}
/* Fields in error state */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
	border: 2px solid #a41314 !important;
	background: #fff8f8;
	border-radius: 4px;
	color: #a41314;
	height: 53px;
	box-sizing: border-box;
}
/* Success / Confirmation message */
.gform_wrapper .gform_confirmation_message {
	border: 2px solid #28a745;
	background: #e9f8ee;
	color: #155724;
	padding: 20px;
	border-radius: 25px;
	margin-bottom: 270px;
	font-weight: 600;
	text-align: left;
	font-size: 2.0rem;
	line-height: 2.6rem;
}



/* =========================
   PLUGINS - FEATURES
   ========================= */
.plugin-info {
	background: #fff;
	color: #275759;
	padding: 50px 20px;
}
@media (max-width: 850px) {
.plugin-info {
	padding: 30px 20px;
}
}
.plugin-info .plugin-info-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 55px;
	align-items: start;
}
@media (max-width: 850px) {
.plugin-info .plugin-info-inner {
	grid-template-columns: 1fr;
	gap: 5px;
}
}
.plugin-info .features-box {
	background: #eceff7;
	padding: 25px 30px;
	border-radius: 25px;
	text-align: center;
}
.plugin-info .features-box h2 {
	margin: 0 0 25px 0;
}
.plugin-info .features-box ul.checklist {
	list-style: none;
	text-align: left;
	padding: 0;
	margin: 0;
}
.plugin-info .features-box ul.checklist li {
	position: relative;
	padding-left: 35px;   /* space for icon */
	padding-bottom: 20px;
	line-height:2.2rem;
}
.plugin-info .features-box ul.checklist li:last-child {
	padding-bottom: 0;
}
.plugin-info .features-box ul.checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 22px;   /* adjust icon size */
	height: 22px;
	background: url("images/tick.png") no-repeat center center;
	background-size: contain;
}
.plugin-info .plugin-text {
	padding-top: 25px;
	font-weight: 300;
}
.plugin-info .plugin-text h2 {
	margin: 0 0 25px 0;
}

/* =========================
   PLUGINS - DOCUMENTATION
   ========================= */
.plugin-docs {
    background: #fff;
    color: #27595a;
}
.plugin-docs .inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0 0 50px 0;
}
@media (max-width: 1220px) {
.plugin-docs .inner {
	padding: 0 20px 30px 20px;
}
main .plugin-docs .slim {
	padding: 0;
}
}
.plugin-docs .inner h1.title {
    color: #a41213;
	margin-bottom: 40px;
}


.plugin-docs .docs-tabs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
@media (max-width: 850px) {
.plugin-docs .docs-tabs {
	flex-direction: column;
	gap: 20px;
}
}
.plugin-docs .docs-tab {
    flex: 1;
    position: relative;
    background: #fff;
    border: 2px solid #a41213;
    color: #a41213;
    height: 54px;
    text-align: left;
    padding-left: 20px;
    font-size: 2.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
	text-transform: none;
    border-radius: 20px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 0;
}
.plugin-docs .docs-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a41213;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1; /* force background behind content */
}
/* slide in */
.plugin-docs .docs-tab:hover::before,
.plugin-docs .docs-tab.active::before {
    transform: translateX(0);
}
/* text + icon always above bg */
.plugin-docs .docs-tab * {
    position: relative;
    z-index: 1;
}
/* text turns white */
.plugin-docs .docs-tab:hover,
.plugin-docs .docs-tab.active {
    color: #fff;
}
@media (max-width: 850px) {
.plugin-docs .docs-tab {
	flex: none;
	width: 100%;
	font-size: 2.0rem;
	padding-left: 15px;
}
}
.plugin-docs .docs-tab .docs-tab-icon {
    width: 60px;
    height: 100%;
    flex-shrink: 0;
    background: #a41213 url("images/docs-arrow.png") no-repeat center center;
    background-size: 22px 22px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}
.plugin-docs .docs-content {
    text-align: left;
}
.plugin-docs .docs-panel {
    display: none;
	color: #444;
}
.plugin-docs .docs-panel.active {
    display: block;
}
.plugin-docs .docs-panel h2 {
	text-align: center;
}

.changelog {
	background: #eceff7;
	padding: 30px;
	font-family: 'Courier New', monospace;
	text-align: left;
}
.how-works {
	background: #eceff7;
	padding: 30px;
}
.how-works img {
	border: 1px solid #666666;
	max-width:100%;
}
.how-works p:last-child {
	margin:0;
}
.plugin-docs .how-works > *:first-child {
    margin-top: 0;
}
.proversion {
	background: #eceff7;
	padding: 30px;
}

/* =========================
   PLUGINS - LAST CTA
   ========================= */
.final-cta {
    background: #fff;
    color: #27595a;
    text-align: center;
	margin-bottom: 50px;
}
.final-cta .inner {
    max-width: 1200px;
    margin: 0 auto;
}
.final-cta .inner .title {
    margin: 10px 0 40px 0;
	padding: 0;
}
.final-cta .swp-button {
    background: #55bac0;
    color: #27595a;
    box-shadow: 3px 3px 0px #27595a;
}
.final-cta .wp-download-btn {
	background-image: url("images/wordpress-logo-small-icon.png")!important;
	background-repeat: no-repeat!important;
	background-position: right 4px center!important;
	background-size: 38px auto!important;
	padding-right: 50px!important; /* space for the icon */
}
.final-cta .version-note {
	margin-top: 2px;
	font-size: 1.2rem;
	color: #27595a;
	margin-bottom: 0;
}
.final-cta .button-group {
    text-align: center;
    white-space: nowrap; /* keeps buttons side-by-side */
    margin-top: 15px;
}
.final-cta .button-group .button-col {
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
    text-align: center;
}
.final-cta .button-group .button-col:last-child {
    margin-right: 0;
}
@media (max-width: 850px) {
.final-cta .button-group {
	white-space: normal;
}
.final-cta .button-group .button-col {
	display: block;
	margin: 0;
}
.final-cta .version-note {
	margin-bottom: 20px;
}
}
   
 /* =========================
   PLUGINS - SCREENSHOTS
   ========================= */  
.plugin-screenshots {
    background: #eceff7;
    color: #27595a;
}
.plugin-screenshots .inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	padding: 0 50px 50px 50px;
	border-top: 1px solid transparent;
}
@media (max-width: 850px) {
.plugin-screenshots .inner {
	padding: 0 20px 30px 20px;
}
}
.plugin-screenshots .inner h3 {
	font-weight: 400;
	line-height: 3.0rem; 
	margin: 35px 0 45px 0;
}
.plugin-screenshots .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.plugin-screenshots .screenshot-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	background:#27595a;
	/*border: 1px solid #cecece;*/
}
.plugin-screenshots .screenshot-caption {
    padding: 10px 20px 15px;
	background:#27595a;
	color: #fff;
    text-align: left;
	font-weight:300;
	margin:0;
}
.plugin-screenshots .screenshot-item img {
    width: 100%;
    display: block;
}
.plugin-screenshots .screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    text-decoration: none !important;
    color: #fff !important;
}
@media (max-width: 1024px) {
.plugin-screenshots .screenshots-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 650px) {
.plugin-screenshots .screenshots-grid {
	grid-template-columns: 1fr;
}
}

 /* =========================
   PLUGINS - LIGHTBOX
   ========================= */  
#lightbox-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.90);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
#lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
#lightbox-overlay.active #lightbox-content {
    transform: scale(1);
}
#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
#lightbox-caption {
    margin-top: 20px;
    color: #fff;
    text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #55bac0; /* hover accent */
}
.lightbox-close { 
    top: 20px; 
    right: 30px; 
}
.lightbox-prev { 
    top: 50%; 
    left: 40px; 
    transform: translateY(-50%); 
}
.lightbox-next { 
    top: 50%; 
    right: 40px; 
    transform: translateY(-50%); 
}





 /* =========================
   PLUGINS - LIGHTBOX
   ========================= */  
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #222;
	color: #fff;
	padding: 15px;
	font-size: 14px;
	z-index: 9999;
	box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
}
#cookie-banner p {
	margin: 0 0 10px 0;
	line-height: 1.4;
}
#cookie-banner a {
	color: #55bac0;
	text-decoration: underline;
}
#cookie-banner a:hover {
	text-decoration: none;
}
.cookie-buttons {
	display: flex;
	gap: 10px;
}
#cookie-banner button {
	padding: 6px 15px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: 400;
}
#cookie-accept {background: #55bac0; color: #fff;}
#cookie-reject {background: #a41213; color: #fff;}





/* =========================
   ARTICLES - INDEX
   ========================= */
.articles-section {
	background: #fff;
	padding: 50px 0;
	font-family: "Lexend", sans-serif;
}
@media (max-width: 1220px) {
.articles-section {
	padding-left: 20px;
	padding-right: 20px;
}
}
@media (max-width: 850px) {
.articles-section {
	padding: 30px 20px 30px;
}
}
.articles-inner {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}
@media (max-width: 850px) {
.articles-inner {
	flex-direction: column;
	gap: 40px;
}
}
.articles-main {
	flex: 1;
}
.articles-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 40px;
}
@media (max-width: 850px) {
.articles-grid {
	grid-template-columns: 1fr;
	gap: 40px;
}
}
.article-card {
	text-align: left;
	position: relative;
}
.article-thumb {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}
.article-thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: all 0.2s ease;
}
.article-thumb img:hover {
	opacity: 0.7;
}
.article-category {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #a41213;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 10px;
}
.article-title {
	font-size: 2.2rem;
	line-height: 2.8rem;
	font-weight: 800;
	color: #275759;
	margin: 15px 0 10px;
}
.article-title a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s ease;
}
.article-title a:hover {
	color: #55bac0;
}
.article-card a,
.article-card a:hover,
.article-title a,
.article-title a:hover,
.read-more,
.read-more:hover {
	text-decoration: none !important;
}
.article-excerpt {
	font-size: 1.6rem;
	line-height: 2.2rem;
	color: #333;
	margin-bottom: 10px;
}
.read-more {
	font-size: 1.6rem;
	font-weight: 700;
	color: #a41213;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}
.read-more svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	transition: transform 0.2s ease;
}
.read-more:hover {
	color: #55bac0;
}
.read-more:hover svg {
	transform: translateX(3px);
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.pagination ul {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination li::before {
    content: none !important;
}
.pagination a,
.pagination span {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #a41213;
    border: 2px solid #a41213;
    border-radius: 10px;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pagination a:hover,
.pagination .current,
.pagination .active {
    background: #a41213;
    color: #fff;
    text-decoration: none;
}
/* =========================
   ARTICLES - SIDEBAR
   ========================= */
.articles-sidebar {
	flex: 0 0 320px;
}
.sidebar-box {
	background: #f6f6f6;
	background: #eef3fb;
	border-radius: 25px;
	padding: 25px;
	margin-bottom: 30px;	
}
.sidebar-box:last-child {
	margin-bottom: 0px;
}


.sidebar-box h3 {
	font-size: 2rem;
	color: #275759;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 15px;
}
.sidebar-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-box ul li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sidebar-box ul li:last-child {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.sidebar-box ul li a {
	text-decoration: none;
	font-size: 1.6rem;
	line-height: 1.2;
	color: #333;
}
.sidebar-box ul li a:hover {
	color: #a41213;
}
/* ================================
   ARTICLES - SEARCH BOX & RESULTS
   ================================ */
.search-box form {
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 8px;
}
.search-box input[type="text"] {
	flex: 1;
	padding: 10px 12px;
	border: 2px solid #a41213;
	background: #fff;
	border-right: none;
	border-radius: 8px 0 0 8px;
	font-size: 1.6rem;
	outline: none;
}
.search-box button {
	width: 46px;
	height: 46px;
	border: 2px solid #a41213;
	border-left: none;
	background: #a41213;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.search-box button svg {
	width: 25px;
	height: 25px;
	stroke: #fff;
	stroke-width: 2.6;
	fill: none;
	transition: all 0.2s ease; 
}
.search-box button:hover > svg {
	stroke: #55bac0;
}
 .search-header {
	width: 100%;
	background: #eef3fb;
	padding: 30px 20px;
	margin-bottom: 30px;
	text-align: center;
	border-radius: 20px;
	box-sizing: border-box;
}
.search-title {
	font-size: 2.2rem;
	font-weight: 500;
	color: #275759;
	margin: 0;
	line-height: 2.8rem;
}  
  /* =========================
   ARTICLES - SINGLE
   ========================= */ 
.single-article {
	background: #fff;
	padding-bottom: 30px;
}
.single-thumb {
	margin-bottom: 30px;
}
.single-thumb img {
	border-radius: 20px;
}
.single-title {
	color: #275759;
	margin-bottom: 10px;
}
.single-meta {
	font-size: 1.4rem;
	color: #777;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.single-meta a {
	color: #55bac0;
	text-decoration: none;
}
.single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 25px 0;
}
.single-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 80px;
	padding-top: 30px;
	border-top: 1px solid #ccc;
}
.single-pagination .prev-post {
	flex: 1;
	text-align: left;
}
.single-pagination .next-post {
	flex: 1;
	text-align: right;
}
.single-pagination a {
	color: #55bac0;
	font-weight: 500;
	text-decoration: none;
}
.single-pagination a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
.single-pagination {
	flex-direction: column;
	gap: 20px;
}
.single-pagination .prev-post,
.single-pagination .next-post {
	text-align: center;
}
}
