/* System Design Tokens for Consistency */
:root {
  --font-xs: 12px;
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 24px;
  --font-2xl: 32px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

body {
  background: #F5F7FB;
  color: #222;
  font-size: var(--font-sm);
}

/*=============================
SIMPLE COMPACT SEARCH BAR
=============================*/

.simple-search-section {
    width: 94%;
    max-width: 1000px;
    margin: 24px auto 16px auto;
    box-sizing: border-box;
}

.simple-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

body.dark-mode .simple-search-bar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.simple-search-bar:focus-within {
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.simple-search-bar .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    pointer-events: none;
    z-index: 2;
    margin-right: 0;
}

body.dark-mode .simple-search-bar .search-icon {
    color: #818cf8;
}

.simple-search-bar input {
    flex: 1;
    min-width: 0;
    width: 100% !important;
    padding: 16px 54px 16px 24px !important;
    border-radius: 50px !important;
    border: 1.5px solid var(--border, #cbd5e1) !important;
    background: var(--surface, #ffffff) !important;
    color: var(--text, #1e293b) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.simple-search-bar input:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.2) !important;
}

body.dark-mode .simple-search-bar input {
    background: #1e293b !important;
    color: #f8fafc !important;
    border-color: #334155 !important;
}

.simple-search-bar button, .simple-search-bar .search-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.simple-search-bar button:hover, .simple-search-bar .search-action-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45);
}

/*==================================================
  LIVE PREDICTIVE SEARCH SUGGESTIONS POPUP
==================================================*/
.search-suggestions-box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(99, 102, 241, 0.15);
    z-index: 995 !important;
    max-height: 380px;
    overflow-y: auto;
    display: none;
    padding: 8px 0;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
}

body.dark-mode .search-suggestions-box,
body.dark .search-suggestions-box {
    background: #0f172a;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--border, #f1f5f9);
}

body.dark-mode .search-suggestion-item,
body.dark .search-suggestion-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
    background: rgba(99, 102, 241, 0.08);
}

body.dark-mode .search-suggestion-item:hover,
body.dark-mode .search-suggestion-item.active {
    background: rgba(99, 102, 241, 0.2);
}

.suggestion-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text, #0f172a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.dark-mode .suggestion-title {
    color: #f8fafc;
}

.suggestion-meta {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-top: 2px;
}

.hero-right img{
width:100%;
max-width:420px;
}

/*=============================
SEARCH (HANDLED BY COMMON.CSS UIVERSE-SEARCH-BOX)
=============================*/

/*=============================
SEARCH TAGS
=============================*/

.hero-tags{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.hero-tags span{
padding:10px 18px;
background:rgba(255,255,255,.18);
border-radius:50px;
backdrop-filter:blur(10px);
font-size:10px;
cursor:pointer;
transition:.3s;
}

.hero-tags span:hover{
background:#fff;
color:#4F46E5;
}

/*=============================
STATISTICS
=============================*/

.search-stats{
width:92%;
margin:60px auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-card{
background:var(--surface, #fff);
padding:18px 16px;
text-align:center;
border-radius:var(--radius-md, 12px);
box-shadow:0 6px 18px rgba(0,0,0,.04);
border:1px solid var(--border, #e2e8f0);
transition:.25s ease;
}

.stat-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.stat-card h2{
font-size:var(--font-2xl, 32px);
font-weight:800;
color:#4F46E5;
margin:0;
line-height:1.2;
}

.stat-card p{
font-size:var(--font-sm, 14px);
font-weight:700;
color:var(--text-light, #64748b);
margin:4px 0 0 0;
}

.simple-search-section {
    position: relative;
    z-index: 990 !important;
}

/*=============================
FILTER & AD CONTAINER
=============================*/
.filters-and-ad-container {
    width: 92%;
    margin: 15px auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 1 !important;
}

.filter-panel {
    width: 100%;
    margin: 0;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

body.dark-mode .filter-panel {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.filter-header h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.btn-apply-filters {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-apply-filters:hover {
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.5);
}

.btn-reset-filters {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset-filters:hover {
    background: #ef4444;
    color: #ffffff;
}

.filters {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px 16px !important;
    align-items: end !important;
}

.filter-box {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.filter-action-box {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
}

.filter-box label {
    margin-bottom: 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    line-height: 1 !important;
}

.filter-box input,
.filter-box select {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 10px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: var(--radius-sm, 8px) !important;
    outline: none !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    color: #1e293b !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    text-overflow: ellipsis !important;
}

body.dark-mode .filter-box input,
body.dark-mode .filter-box select {
    background: #0f172a !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #f8fafc !important;
}

.filter-box input:focus,
.filter-box select:focus {
    border-color: #4F46E5 !important;
    box-shadow: 0 0 0 3px rgba(79,70,229,.15) !important;
}

@media (max-width: 1024px) {
    .filters {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 580px) {
    .filters {
        grid-template-columns: 1fr !important;
    }
}

/* Side Advertisement Banner */
.side-ad-banner {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    padding: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

body.dark-mode .side-ad-banner {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
    .filters-and-ad-container {
        grid-template-columns: 1fr;
    }
}

/*=============================
RESULT TITLE
=============================*/

.results-title {
    width: 92%;
    margin: 40px auto 16px;
}

.results-title h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.results-title p {
    color: #64748b;
    font-size: 14px;
}

/*==================================================
PART 2
RESULT CARDS & 3-COLUMN GRID
==================================================*/

.results-grid {
    width: 92%;
    margin: 20px auto 40px;
    display: block;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.note-card {
    min-width: 0;
}

@media (max-width: 768px) {
    .notes-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/*==============================
NOTE CARD
==============================*/

.note-card{
background:#fff;
border-radius:22px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.35s;
display:flex;
flex-direction:column;
position:relative;
}

.note-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/*==============================
THUMBNAIL
==============================*/

.note-thumbnail{
height:210px;
overflow:hidden;
background:#EDEDED;
}

.note-thumbnail img{
width:100%;
height:100%;
object-fit:cover;
transition:.45s;
}

.note-card:hover .note-thumbnail img{
transform:scale(1.08);
}

/*==============================
CONTENT
==============================*/

.note-content{
padding:24px;
display:flex;
flex-direction:column;
flex:1;
}

/*==============================
SUBJECT TAG
==============================*/

.subject{
display:inline-block;
padding:7px 16px;
border-radius:30px;
font-size:13px;
font-weight:700;
color:#fff;
margin-bottom:18px;
width:max-content;
}

.physics{
background:#2563EB;
}

.chemistry{
background:#DC2626;
}

.biology{
background:#16A34A;
}

.maths{
background:#7C3AED;
}

.english{
background:#F59E0B;
}

.computer{
background:#0891B2;
}

/*==============================
TITLE
==============================*/

.note-content h3{
font-size:24px;
line-height:1.4;
margin-bottom:14px;
color:#222;
}

/*==============================
DESCRIPTION
==============================*/

.note-content p{
font-size:11px;
color:#666;
margin-bottom:22px;
}

/*==============================
INFO BAR
==============================*/

.note-info{
display:flex;
justify-content:space-between;
padding:14px 0;
border-top:1px solid #EEE;
border-bottom:1px solid #EEE;
margin-bottom:24px;
font-size:10px;
color:#666;
}

/*==============================
BUTTONS
==============================*/

.note-actions{
display:flex;
gap:12px;
margin-top:auto;
}

.note-actions button{
flex:1;
padding:13px;
border:none;
border-radius:12px;
cursor:pointer;
font-size:10px;
font-weight:600;
transition:.3s;
}

.view-btn{
background:#4F46E5;
color:#fff;
}

.view-btn:hover{
background:#4338CA;
}

.download-btn{
background:#16A34A;
color:#fff;
}

.download-btn:hover{
background:#15803D;
}

.bookmark-btn{
flex:0 0 52px !important;
background:#FFF3F3;
color:#EF4444;
font-size:20px;
}

.bookmark-btn:hover{
background:#EF4444;
color:#fff;
transform:scale(1.08);
}

/*==============================
POPULAR RIBBON (Top 5 Viewed Notes Only)
==============================*/

.note-card.popular::after{
content:"POPULAR";
position:absolute;
top:18px;
right:-38px;
background:#F59E0B;
color:#fff;
padding:6px 40px;
font-size:11px;
font-weight:700;
transform:rotate(45deg);
z-index: 2;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/*==============================
CARD SHINE
==============================*/

.note-card::before{
content:"";
position:absolute;
left:-120%;
top:0;
width:70%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.35),
transparent
);
transition:.8s;
}

.note-card:hover::before{
left:150%;
}

/*==============================
LOAD MORE BUTTON
==============================*/

.load-more{
text-align:center;
margin:60px 0;
}

.load-more button{
padding:18px 45px;
border:none;
background:#4F46E5;
color:#fff;
border-radius:14px;
cursor:pointer;
font-size:16px;
font-weight:600;
transition:.3s;
}

.load-more button:hover{
background:#4338CA;
transform:translateY(-3px);
}
/*==================================================
PART 3
SIDEBAR • PAGINATION • NEWSLETTER • FOOTER
RESPONSIVE
==================================================*/

/*==============================
SIDEBAR
==============================*/

.search-sidebar{
width:92%;
margin:70px auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.sidebar-box{
background:#fff;
padding:30px;
border-radius:22px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
}

.sidebar-box:hover{
transform:translateY(-5px);
}

.sidebar-box h3{
font-size:24px;
margin-bottom:20px;
color:#222;
}

.sidebar-box ul{
list-style:none;
}

.sidebar-box li{
padding:14px 0;
border-bottom:1px solid #ECECEC;
cursor:pointer;
transition:.3s;
font-size:11px;
color:#555;
}

.sidebar-box li:last-child{
border:none;
}

.sidebar-box li:hover{
padding-left:12px;
color:#4F46E5;
}

/*==============================
PAGINATION
==============================*/

.pagination{
width:92%;
margin:70px auto;
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}

.pagination button{
padding:14px 22px;
border:none;
background:#fff;
border-radius:12px;
cursor:pointer;
font-weight:600;
box-shadow:0 6px 15px rgba(0,0,0,.05);
transition:.3s;
}

.pagination button:hover{
background:#4F46E5;
color:#fff;
}

.pagination .active{
background:#4F46E5;
color:#fff;
}

/*==============================
NEWSLETTER
==============================*/

.newsletter{
width:92%;
margin:90px auto;
padding:70px;
background:linear-gradient(135deg,#4F46E5,#7C3AED);
border-radius:28px;
text-align:center;
color:#fff;
}

.newsletter h2{
font-size:35px;
margin-bottom:20px;
}

.newsletter p{
font-size:17px;
opacity:.95;
margin-bottom:30px;
}

.newsletter-box{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.newsletter-box input{
width:420px;
max-width:100%;
padding:18px;
border:none;
border-radius:12px;
outline:none;
font-size:16px;
}

.newsletter-box button{
padding:18px 35px;
border:none;
border-radius:12px;
background:#fff;
color:#4F46E5;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.newsletter-box button:hover{
transform:translateY(-3px);
}

/*==============================
FOOTER
==============================*/

footer{
margin-top:80px;
background:#111827;
padding:60px 10%;
text-align:center;
color:#fff;
}

footer h3{
font-size:25px;
margin-bottom:15px;
}

footer p{
opacity:.8;
margin:8px 0;
}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#4F46E5;
border-radius:20px;
}

::-webkit-scrollbar-track{
background:#F2F2F2;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1100px){
.search-hero{
grid-template-columns:1fr;
text-align:center;
padding:55px;
}

.hero-right{
order:-1;
}

.hero-right img{
max-width:320px;
}

.search-stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){
header{
flex-direction:column;
gap:18px;
padding:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.search-hero{
padding:40px 25px;
}

.hero-left h1{
font-size:25px;
}

.hero-search{
    padding:6px 8px;
}

.hero-search input{
    padding:12px 14px;
    font-size:15px;
}

.hero-search button{
    padding:12px 20px;
    font-size:14px;
}

.search-stats{
grid-template-columns:1fr;
}

.filters{
grid-template-columns:1fr;
}

.results-grid{
grid-template-columns:1fr;
}

.search-sidebar{
grid-template-columns:1fr;
}

.note-actions{
flex-direction:column;
}

.bookmark-btn{
flex:1 !important;
}

.newsletter{
padding:45px 25px;
}

.newsletter h2{
font-size:25px;
}

.simple-search-bar {
    padding: 4px 6px 4px 14px;
}

.simple-search-bar .search-icon {
    font-size: 15px;
    margin-right: 8px;
}

.simple-search-bar input {
    font-size: 14px;
    padding: 10px 0;
}

.simple-search-bar button {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 10px;
}

}

@media(max-width:480px){
.logo-container span{
font-size:22px;
}

.hero-left h1{
font-size:22px;
}

.section-title h2{
font-size:22px;
}

.note-content h3{
font-size:20px;
}

.stat-card h2{
font-size:25px;
}

.sidebar-box{
padding:22px;
}

.newsletter{
padding:35px 18px;
}

footer{
padding:45px 20px;
}

}

/*====================================================
      YouTube-Style Shimmer Skeleton Loader
====================================================*/
@keyframes shimmerWave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.search-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    grid-column: 1 / -1;
}

.skeleton-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.skeleton-line {
    border-radius: 6px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.skeleton-line::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmerWave 1.4s infinite ease-in-out;
}

.skeleton-badge {
    height: 22px;
    width: 40%;
}

.skeleton-title {
    height: 22px;
    width: 85%;
}

.skeleton-meta {
    height: 16px;
    width: 60%;
}

.skeleton-btn {
    height: 40px;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

/* Dark Mode Skeleton Styling */
body.dark .skeleton-card,
body.dark-mode .skeleton-card {
    background: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

body.dark .skeleton-line,
body.dark-mode .skeleton-line {
    background: #334155 !important;
    animation: shimmerWave 1.4s infinite ease-in-out !important;
}

@media (max-width: 640px) {
    .simple-search-section {
        width: 95%;
        margin: 16px auto 12px auto;
    }
    .simple-search-bar {
        padding: 4px 6px 4px 14px;
        border-radius: 50px;
    }
    .simple-search-bar input {
        font-size: 14.5px;
        padding: 10px 4px;
    }
    .simple-search-bar button {
        padding: 10px 18px;
        border-radius: 50px;
        font-size: 13.5px;
    }
}

/* ==========================================
   UIVERSE.IO PENUMBRA CTA BUTTON COMPONENT
   ========================================== */
.penumbra-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  padding: 0 16px !important;
  background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: var(--radius-sm, 8px) !important;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35) !important;
  font-family: inherit !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  user-select: none !important;
  white-space: nowrap !important;
  transition: all 180ms ease !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  outline: none !important;
}

.penumbra-cta:hover {
  background: linear-gradient(135deg, #4f46e5, #3730a3) !important;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-1px) !important;
}

.penumbra-cta:active {
  transform: translateY(1px) !important;
}

.penumbra-cta .penumbra-cta__label {
  display: inline-block !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.penumbra-cta .penumbra-cta__icon,
.penumbra-cta svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  stroke-width: 2.2 !important;
  stroke: #ffffff !important;
  fill: none !important;
  flex-shrink: 0 !important;
  transition: transform 180ms ease !important;
  display: inline-block !important;
}

.penumbra-cta:hover .penumbra-cta__icon,
.penumbra-cta:hover svg {
  transform: translateX(4px) !important;
}