/*=========================================================================
# Project Overview
===========================================================================
Project Name    : Weplugins Infowindow
Author          : Weplugins
Developer       : Dinesh Suthar
Version         : 1.0.0
Created On      : 10 June 2025
Last Updated    : 10 June 2025
Description     : This stylesheet is designed for an weplugins. 
                  Includes responsive design principles and accessibility.
===========================================================================*/

/* Info window layout style
===========================================================================*/
.fc-infobox-layout-20 .fc-infobox-root {
  --fc-infobox-title-color: #fff;
}

.fc-infobox-layout-20 .fc-infobox-img-wrapper {
  position: relative;
}

.fc-infobox-layout-20 .fc-infobox-img {
  width: 100%;
  height: 200px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.fc-infobox-layout-20 .fc-infobox-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.fc-infobox-layout-20 .fc-infobox .fc-infobox-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: var(--fc-infobox-padding-y) var(--fc-infobox-padding-x);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  margin-bottom: 0;
}
