/*
Theme Name: Kinderland College
Theme URI: https://kinderland.edu.pe
Author: Kinderland College
Author URI: https://kinderland.edu.pe
Description: Tema personalizado para Kinderland College - Colegio privado en Chiclayo, Peru. Educacion Inicial y Primaria.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kinderland
Tags: education, school, custom-logo, custom-menu, responsive

Kinderland College - Formando estudiantes con valores y excelencia
*/

/* ========================================
   CSS Variables / Colores institucionales
   ======================================== */
:root {
  --kc-red: #C8102E;
  --kc-blue: #1F2A44;
  --kc-yellow: #F2C300;
  --kc-white: #FFFFFF;
  --kc-gray: #F5F5F5;
  --kc-text: #374151;
  --kc-text-light: #6B7280;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--kc-text);
  line-height: 1.6;
  background-color: var(--kc-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
  color: var(--kc-blue);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ========================================
   Header / Navbar
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--kc-white);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 55px;
  width: auto;
}

.site-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .site-logo-text {
    display: block;
  }
  .site-logo-text .name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kc-blue);
  }
  .site-logo-text .tagline {
    font-size: 0.75rem;
    color: var(--kc-text-light);
  }
}

/* Desktop Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-navigation a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kc-blue);
}

.main-navigation a:hover {
  color: var(--kc-red);
}

.btn-admission {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background-color: var(--kc-red);
  color: var(--kc-white) !important;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-admission:hover {
  opacity: 0.9;
  color: var(--kc-white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--kc-blue);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Navigation */
.mobile-navigation {
  display: none;
  padding-bottom: 1rem;
  background-color: var(--kc-white);
  border-top: 1px solid #e5e7eb;
}

.mobile-navigation.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-navigation { display: none !important; }
}

.mobile-navigation a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--kc-blue);
  font-weight: 500;
}

.mobile-navigation a:hover {
  color: var(--kc-red);
  background-color: var(--kc-gray);
}

.mobile-navigation .btn-admission {
  display: block;
  text-align: center;
  margin: 0.5rem 1rem 0;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section { height: 700px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--kc-blue);
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 900px;
}

.hero-content h1 {
  color: var(--kc-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-content p { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--kc-red);
  color: var(--kc-white);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .btn-primary { width: auto; }
}

.btn-primary:hover {
  opacity: 0.9;
  color: var(--kc-white);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--kc-white);
  color: var(--kc-blue);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .btn-secondary { width: auto; }
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid var(--kc-white);
  color: var(--kc-white);
  border-radius: 0.5rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--kc-white);
}

/* ========================================
   Section Base Styles
   ======================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section { padding: 5rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--kc-text);
  max-width: 640px;
  margin: 0 auto;
}

.bg-gray {
  background-color: var(--kc-gray);
}

.bg-white {
  background-color: var(--kc-white);
}

/* ========================================
   Welcome / About Section
   ======================================== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .welcome-grid { grid-template-columns: 1fr 1fr; }
}

.welcome-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.welcome-text p {
  font-size: 1.125rem;
  color: var(--kc-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.welcome-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: var(--kc-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--kc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--kc-blue);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--kc-text);
  line-height: 1.7;
}

/* ========================================
   Education Levels
   ======================================== */
.levels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .levels-grid { grid-template-columns: 1fr 1fr; }
}

.level-card {
  background: var(--kc-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.level-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.level-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.level-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.level-card:hover .level-card-image img {
  transform: scale(1.05);
}

.level-card-body {
  padding: 2rem;
}

.level-card-body h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.level-card-body p {
  color: var(--kc-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.level-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.level-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  background-color: var(--kc-yellow);
  color: var(--kc-blue);
  font-weight: 500;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--kc-red);
  color: var(--kc-white);
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  opacity: 0.9;
  color: var(--kc-white);
}

.btn-red svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   School Life / Gallery
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  height: 20rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--kc-blue);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 0.6;
}

.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.gallery-item-title h3 {
  color: var(--kc-white);
  font-size: 1.25rem;
}

.gallery-item-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--kc-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-bar {
  transform: scaleX(1);
}

/* ========================================
   News Section
   ======================================== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  background: var(--kc-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.news-card-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1.5rem;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--kc-text-light);
}

.news-date svg {
  width: 16px;
  height: 16px;
  color: var(--kc-red);
}

.news-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body > p {
  color: var(--kc-text);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--kc-red);
  font-weight: 600;
}

.news-link:hover {
  gap: 0.75rem;
  color: var(--kc-red);
}

.news-link svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   Admission CTA
   ======================================== */
.admission-section {
  position: relative;
  background-color: var(--kc-red);
  padding: 5rem 0;
  overflow: hidden;
}

.admission-section .decor-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--kc-yellow);
  opacity: 0.1;
}

.admission-section .decor-circle.top-right {
  width: 16rem;
  height: 16rem;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.admission-section .decor-circle.bottom-left {
  width: 12rem;
  height: 12rem;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.admission-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.admission-content h2 {
  color: var(--kc-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.admission-content > p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.admission-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .admission-buttons { flex-direction: row; }
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--kc-white);
  color: var(--kc-red);
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .btn-white { width: auto; }
  .btn-outline-white { width: auto; }
}

.btn-white:hover {
  opacity: 0.9;
  color: var(--kc-red);
}

/* Admission Steps */
.admission-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .admission-steps { grid-template-columns: repeat(3, 1fr); }
}

.admission-step {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--kc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kc-red);
  font-family: 'Poppins', sans-serif;
}

.admission-step h3 {
  color: var(--kc-white);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.admission-step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: var(--kc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--kc-blue);
}

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--kc-text);
}

.contact-map {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--kc-white);
  border-top: 1px solid #e5e7eb;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-about p {
  color: var(--kc-text);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--kc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  color: var(--kc-blue);
}

.footer-column h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--kc-text);
}

.footer-column a:hover {
  color: var(--kc-red);
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--kc-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--kc-text);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--kc-text-light);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--kc-text-light);
}

.footer-legal a:hover {
  color: var(--kc-red);
}

/* ========================================
   WordPress Specific
   ======================================== */
.wp-block-image img {
  border-radius: 0.5rem;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.25rem;
}

.page-header {
  background-color: var(--kc-blue);
  padding: 6rem 0 3rem;
  margin-top: 80px;
  text-align: center;
}

.page-header h1 {
  color: var(--kc-white);
  font-size: 2.5rem;
}

/* Blog / Archive */
.blog-posts {
  padding: 3rem 0;
}

.post-card {
  background: var(--kc-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.post-card-image {
  height: 250px;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 1.5rem;
}

.post-card-body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-card-body h2 a {
  color: var(--kc-blue);
}

.post-card-body h2 a:hover {
  color: var(--kc-red);
}

.post-meta {
  font-size: 0.875rem;
  color: var(--kc-text-light);
  margin-bottom: 1rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
}

.pagination .current {
  background-color: var(--kc-red);
  color: var(--kc-white);
}

.pagination a {
  background-color: var(--kc-gray);
  color: var(--kc-blue);
}

.pagination a:hover {
  background-color: var(--kc-red);
  color: var(--kc-white);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}
