/**
 * Adopet Hero Layout Styles
 * New hero section layout with cards, steps, stories carousel, and CTA
 * 
 * @package Adopet
 * @since 1.0.0
 */

/* === CSS VARIABLES (CUSTOM PROPERTIES) DESIGN TOKENS === */
:root {
  --adopet-hero-blue: #2F6FB2;
  --adopet-hero-green: #2E8B57;
  --adopet-hero-red: #B3202A;
  --adopet-hero-bg: #FAF7F3;
  --adopet-hero-land: #EEEADF;
  --adopet-hero-ocean: #4DA3D9;
  --adopet-hero-text: #1F2D1F;
  --adopet-hero-text-light: #5A6C5A;
  --adopet-hero-white: #FFFFFF;
  --adopet-hero-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --adopet-hero-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --adopet-hero-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --adopet-hero-radius-sm: 12px;
  --adopet-hero-radius-md: 20px;
  --adopet-hero-radius-lg: 32px;
  --adopet-hero-radius-xl: 48px;
  --adopet-hero-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === HERO LAYOUT CONTAINER === */
.adopet-hero-layout {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--adopet-hero-bg);
  color: var(--adopet-hero-text);
  line-height: 1.6;
}

.adopet-hero-layout *,
.adopet-hero-layout *::before,
.adopet-hero-layout *::after {
  box-sizing: border-box;
}

/* === HERO SECTION === */
.adopet-hero-layout .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.adopet-hero-layout .hero {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.adopet-hero-layout .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.adopet-hero-layout .hero-content {
  display: flex;
  flex-direction: column;
}

.adopet-hero-layout .hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: left;
  background: linear-gradient(90deg, var(--adopet-hero-blue), var(--adopet-hero-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.adopet-hero-layout .hero-subtitle {
  font-size: 1.3rem;
  color: var(--adopet-hero-text-light);
  margin-bottom: 2.5rem;
  max-width: 100%;
  text-align: left;
  line-height: 1.5;
}

/* Hero actions - compact wireframe layout */
.adopet-hero-layout .hero-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: auto;
}

.adopet-hero-layout .hero-card {
  background: var(--adopet-hero-white);
  padding: 0 5px 5px;
  border-radius: var(--adopet-hero-radius-lg);
  box-shadow: var(--adopet-hero-shadow-md);
  text-align: center;
  cursor: pointer;
  transition: var(--adopet-hero-transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 220px;
}

.adopet-hero-layout .hero-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--adopet-hero-shadow-lg);
  border-color: var(--adopet-hero-blue);
}

.adopet-hero-layout .hero-card .icon-img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
  transition: var(--adopet-hero-transition);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.adopet-hero-layout .hero-card:hover .icon-img {
  transform: scale(1.1) translateY(-5px);
}

.adopet-hero-layout .hero-card strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--adopet-hero-text);
  font-family: 'Poppins', sans-serif;
  min-height: 40px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.adopet-hero-layout .hero-card p {
  font-size: 0.85rem;
  color: var(--adopet-hero-text-light);
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Hero image container */
.adopet-hero-layout .hero-image {
  display: flex;
  align-items: stretch;
  position: relative;
  height: 100%;
  border-radius: var(--adopet-hero-radius-xl);
  overflow: hidden;
  box-shadow: var(--adopet-hero-shadow-lg);
  background: #f6f2ec;
  transform: translateY(4px);
}

.adopet-hero-layout .hero-main-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  will-change: transform;
  transition: var(--adopet-hero-transition);
}

.adopet-hero-layout .hero-image:hover .hero-main-image {
  transform: scale(1.03);
}

/* Image placeholder (fallback if no image URL) */
.adopet-hero-layout .image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--adopet-hero-blue) 0%, var(--adopet-hero-green) 100%);
  border-radius: var(--adopet-hero-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  opacity: 0.8;
}



/* === STEPS SECTION === */
.adopet-hero-layout h2,
.adopet-hero-layout h3 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.adopet-hero-layout h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--adopet-hero-text);
  position: relative;
  display: inline-block;
}

.adopet-hero-layout h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--adopet-hero-green);
  border-radius: 2px;
}

.adopet-hero-layout h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.adopet-hero-layout .steps-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 243, 0.8) 100%);
  border-radius: var(--adopet-hero-radius-xl);
  padding: 60px 40px;
  margin-top: 40px;
}

.adopet-hero-layout .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.adopet-hero-layout .step {
  background: var(--adopet-hero-white);
  padding: 40px 32px;
  border-radius: var(--adopet-hero-radius-lg);
  box-shadow: var(--adopet-hero-shadow-md);
  text-align: center;
  transition: var(--adopet-hero-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adopet-hero-layout .step:hover {
  transform: translateY(-8px);
  box-shadow: var(--adopet-hero-shadow-lg);
}

.adopet-hero-layout .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--adopet-hero-blue);
}

.adopet-hero-layout .step:nth-child(2)::before {
  background: var(--adopet-hero-green);
}

.adopet-hero-layout .step:nth-child(3)::before {
  background: var(--adopet-hero-red);
}

.adopet-hero-layout .step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.adopet-hero-layout .step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.adopet-hero-layout .step p {
  font-size: 1rem;
  color: var(--adopet-hero-text-light);
  margin-bottom: 0;
  margin-top: 0;
}


/* === ENHANCED INTERACTIVE STYLES === */
/* Active state feedback */
.adopet-hero-layout .hero-card:active,
.adopet-hero-layout .step:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Focus accessibility indicator */
.adopet-hero-layout .hero-card::after,
.adopet-hero-layout .step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 0 3px rgba(47, 111, 178, 0.3);
    transition: opacity 0.2s ease;
}

.adopet-hero-layout .hero-card:focus::after,
.adopet-hero-layout .step:focus::after {
    opacity: 1;
    outline: none;
}

/* Action-specific hover border colors */
/* Override the default blue hover border for specific actions */
.adopet-hero-layout .hero-card[data-action="adopt"]:hover {
    border-color: var(--adopet-hero-blue);
}

.adopet-hero-layout .hero-card[data-action="lost"]:hover {
    border-color: var(--adopet-hero-red);
}

.adopet-hero-layout .hero-card[data-action="found"]:hover {
    border-color: var(--adopet-hero-green);
}

/* === STORIES SECTION === */
.adopet-hero-layout .stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.adopet-hero-layout .story {
  background: var(--adopet-hero-white);
  padding: 32px;
  border-radius: var(--adopet-hero-radius-lg);
  box-shadow: var(--adopet-hero-shadow-md);
  border-left: 6px solid var(--adopet-hero-green);
  transition: var(--adopet-hero-transition);
  position: relative;
}

.adopet-hero-layout .story:hover {
  transform: translateY(-5px);
  box-shadow: var(--adopet-hero-shadow-lg);
}

.adopet-hero-layout .story::before {
  content: """;
  font-size: 5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--adopet-hero-blue);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.adopet-hero-layout .story p {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.adopet-hero-layout .read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--adopet-hero-blue);
  text-decoration: none;
  transition: var(--adopet-hero-transition);
}

.adopet-hero-layout .read-more:hover {
  color: var(--adopet-hero-green);
  gap: 16px;
}

/* === FINAL CTA SECTION === */
.adopet-hero-layout .final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--adopet-hero-green) 0%, #267a4a 100%) !important;
  color: var(--adopet-hero-white) !important;
  padding: 100px 40px;
  border-radius: var(--adopet-hero-radius-xl);
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.adopet-hero-layout .final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.adopet-hero-layout .final-cta h2 {
  color: var(--adopet-hero-white);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.adopet-hero-layout .final-cta h2::after {
  background: var(--adopet-hero-white);
  left: 50%;
  transform: translateX(-50%);
}

.adopet-hero-layout .final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.adopet-hero-layout .cta-button {
  display: inline-block;
  background: var(--adopet-hero-white);
  color: var(--adopet-hero-green);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 40px;
  transition: var(--adopet-hero-transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.adopet-hero-layout .cta-button:hover {
  background: var(--adopet-hero-bg);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}


/* === CAROUSEL STYLES === */
.adopet-hero-layout .carousel-wrapper {
  margin: 60px auto 40px;
  padding: 20px;
}

.adopet-hero-layout .carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--adopet-hero-radius-lg);
}

.adopet-hero-layout .carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.adopet-hero-layout .carousel-slide {
  min-width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.adopet-hero-layout .story-card {
  background: var(--adopet-hero-white);
  padding: 40px 35px;
  border-radius: var(--adopet-hero-radius-lg);
  box-shadow: var(--adopet-hero-shadow-md);
  border-left: 6px solid var(--adopet-hero-green);
  transition: var(--adopet-hero-transition);
  height: 100%;
  position: relative;
}

.adopet-hero-layout .story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--adopet-hero-shadow-lg);
}

.adopet-hero-layout .story-type {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.adopet-hero-layout .story-type.adopt {
  background-color: rgba(42, 111, 186, 0.12);
  color: #2a6fba;
  border: 1.5px solid #2a6fba;
}

.adopet-hero-layout .story-type.lost {
  background-color: rgba(171, 28, 45, 0.12);
  color: #ab1c2d;
  border: 1.5px solid #ab1c2d;
}

.adopet-hero-layout .story-type.found {
  background-color: rgba(46, 139, 87, 0.12);
  color: #2e8b57;
  border: 1.5px solid #2e8b57;
}

.adopet-hero-layout .story-card p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--adopet-hero-text);
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
}

.adopet-hero-layout .story-location {
  font-size: 1rem;
  color: var(--adopet-hero-text-light);
  font-style: normal;
}

.adopet-hero-layout .story-location strong {
  color: var(--adopet-hero-text);
  font-family: 'Poppins', sans-serif;
}

/* Navigation Buttons */
.adopet-hero-layout .carousel-btn {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  background: var(--adopet-hero-white);
  border: 2px solid var(--adopet-hero-land);
  color: var(--adopet-hero-blue);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--adopet-hero-shadow-sm);
  transition: var(--adopet-hero-transition);
  z-index: 10;
}

.adopet-hero-layout .carousel-btn:hover {
  background: var(--adopet-hero-blue);
  color: var(--adopet-hero-white);
  border-color: var(--adopet-hero-blue);
  box-shadow: var(--adopet-hero-shadow-md);
}

.adopet-hero-layout .carousel-btn.prev {
  left: 20px;
}

.adopet-hero-layout .carousel-btn.next {
  right: 20px;
}

/* Dots Indicator */
.adopet-hero-layout .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  height: 30px;
  align-items: center;
  position: relative;
}

.adopet-hero-layout .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--adopet-hero-land);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--adopet-hero-transition);
  flex-shrink: 0;
  position: relative;
}

.adopet-hero-layout .carousel-dot.active {
  background: var(--adopet-hero-green);
  transform: scale(1.7);
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
}

.adopet-hero-layout .carousel-dot:hover {
  background: var(--adopet-hero-blue);
  transform: scale(1.7);
}

/* === FOOTER SECTION === */
.adopet-hero-layout .hero-footer {
  text-align: center;
  font-size: 1rem;
  color: var(--adopet-hero-text-light);
  padding: 60px 20px 80px;
}

.adopet-hero-layout .hero-footer h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.adopet-hero-layout .hero-footer h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.adopet-hero-layout .map-wrapper {
  background: var(--adopet-hero-white);
  border-radius: var(--adopet-hero-radius-xl);
  padding: 50px 30px;
  margin: 60px auto 40px;
  box-shadow: var(--adopet-hero-shadow-lg);
  position: relative;
  overflow: hidden;
}

.adopet-hero-layout .map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 111, 178, 0.05) 0%, rgba(46, 139, 87, 0.05) 100%);
}

.adopet-hero-layout .world-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  object-fit: contain;
}

.adopet-hero-layout .hero-footer p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

/* === ANIMATIONS === */
@keyframes adopetFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.adopet-hero-layout .hero,
.adopet-hero-layout .steps-container,
.adopet-hero-layout .stories,
.adopet-hero-layout .final-cta,
.adopet-hero-layout .map-wrapper {
  animation: adopetFadeUp 0.8s ease-out forwards;
}


/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1024px) {
  .adopet-hero-layout .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .adopet-hero-layout .hero-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
    align-items: center;
  }

  .adopet-hero-layout .hero h1,
  .adopet-hero-layout .hero-subtitle {
    text-align: center;
  }

  .adopet-hero-layout .hero-actions {
    margin-top: 20px;
  }

  .adopet-hero-layout .hero-content {
    justify-content: flex-start;
  }

  .adopet-hero-layout .steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .adopet-hero-layout .hero-grid {
    gap: 30px;
  }

  .adopet-hero-layout .hero-image {
    max-width: 100%;
    height: 350px;
  }

  .adopet-hero-layout .hero-actions {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .adopet-hero-layout .hero-card {
    padding: 20px 15px;
    height: auto;
    min-height: 180px;
  }

  .adopet-hero-layout .hero h1 {
    font-size: 2.5rem;
  }

  .adopet-hero-layout .hero-subtitle {
    font-size: 1.1rem;
  }

  .adopet-hero-layout h2 {
    font-size: 1.8rem;
  }

  .adopet-hero-layout .container {
    padding: 60px 20px;
  }

  .adopet-hero-layout .steps,
  .adopet-hero-layout .stories {
    grid-template-columns: 1fr;
  }

  .adopet-hero-layout .final-cta {
    padding: 60px 20px;
  }

  .adopet-hero-layout .final-cta h2 {
    font-size: 2rem;
  }

  .adopet-hero-layout .step-icon {
    width: 50px;
    height: 50px;
  }

  .adopet-hero-layout .step h3 {
    min-height: auto;
    height: auto;
  }

  .adopet-hero-layout .carousel-wrapper {
    margin: 40px auto;
    padding: 10px;
  }

  .adopet-hero-layout .story-card {
    padding: 30px 25px;
  }

  .adopet-hero-layout .story-card p {
    font-size: 1.1rem;
  }

  .adopet-hero-layout .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .adopet-hero-layout .carousel-btn.prev {
    left: 10px;
  }

  .adopet-hero-layout .carousel-btn.next {
    right: 10px;
  }
}

/* Ensure links don't break layout */
.hero-card-link, .step-link {
    text-decoration: none;
    color: inherit;
    display: block;
}