.infobox {
   width: 300px;
   flex-shrink: 0;
   background-color: var(--background-white);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
   overflow: hidden;
   position: sticky;
   top: 100px;
}

.infobox-header {
   background-color: var(--primary-color);
   color: white;
   padding: 1rem;
   text-align: center;
}

.infobox-header h3 {
   margin: 0;
   font-size: 1.25rem;
   font-weight: 600;
}

.infobox-image {
   padding: 1rem;
   text-align: center;
   background-color: var(--background-light);
}

.placeholder-image {
   height: 200px;
   background-color: var(--background-gray);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: var(--radius-md);
   color: var(--text-secondary);
   font-weight: 500;
}

.infobox-table {
   width: 100%;
   border-collapse: collapse;
}

.infobox-table th {
   background-color: var(--background-light);
   font-weight: 600;
   font-size: 0.875rem;
   color: var(--text-primary);
   padding: 0.75rem;
   text-align: left;
   border-bottom: 1px solid var(--border-color);
   vertical-align: top;
   width: 40%;
}

.infobox-table td {
   font-size: 0.875rem;
   color: var(--text-primary);
   padding: 0.75rem;
   border-bottom: 1px solid var(--border-color);
   vertical-align: top;
}

.infobox-table tr:last-child th,
.infobox-table tr:last-child td {
   border-bottom: none;
}

.infobox-table td br {
   margin-bottom: 0.25rem;
}

@media (max-width: 968px) {
   .infobox {
       width: 100%;
       max-width: 500px;
       margin: 0 auto;
       position: static;
   }

   .infobox-image {
       padding: 0.75rem;
   }

   .placeholder-image {
       height: 150px;
   }
}

@media (max-width: 480px) {
   .infobox-table th,
   .infobox-table td {
       padding: 0.5rem;
       font-size: 0.8rem;
   }

   .placeholder-image {
       height: 120px;
   }

   .infobox-header {
       padding: 0.75rem;
   }

   .infobox-header h3 {
       font-size: 1.125rem;
   }
}
