 /* Contenedor centrado y con ancho máximo */
 .video-wrap {
   max-width: 900px;
   margin: 24px auto;
   padding: 0 16px;
 }

 /* Caja responsiva con relación 16:9 usando padding-top (bulletproof genérico) */
 .video-box {
   width: 100%;
   padding-top: 56.25%; /* 16:9 ratio */
   background: #000;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
   position: relative;
 }

 /* El video llena el contenedor manteniendo proporción */
 .video-box video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .video-info-box {
   background-color: #ffffff;
   border-radius: 10px;
   padding: 20px;
   margin-top: 20px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 /* Texto auxiliar */
 .caption {
   /*font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;*/
   font-family: "Oswald", sans-serif;
   color: #333;
   margin-top: 20px;
   text-align: left;
   font-size: 20px;
   font-weight: 500;
   text-transform: uppercase;
 }

 .video-info-box .caption {
   margin-top: 0;
 }

 .video-now-title {
   font-family: "Oswald", sans-serif;
   font-size: 32px;
   font-weight: 700;
   color: #07219F;
   /* Institutional Blue */
   text-align: center;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   margin-bottom: 25px;
   margin-top: 10px;
 }

 .video-desc {
   font-family: "Roboto Condensed", sans-serif;
   font-size: 16px;
   color: #666;
   text-align: left;
   line-height: 1.6;
   max-width: 800px;
   margin: 10px 0 0;
   padding: 0;
   white-space: pre-wrap;
 }

 /* Reactions Card and Buttons */
 .reactions-card {
   background: #fff;
   padding: 14px 20px;
   border-radius: 14px;
   display: flex;
   width: fit-content;
   gap: 16px;
   justify-content: center;
   align-items: center;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   margin-top: 15px;
   margin-left: auto;
   position: relative;
 }

 .btn-reaction {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 8px 18px;
   border-radius: 12px;
   border: none;
   font-family: "Oswald", sans-serif;
   font-size: 15px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   outline: none;
   position: relative;
 }

 .btn-like {
   background-color: #2ecc71;
   color: #fff;
 }

 .btn-like:hover {
   background-color: #27ae60;
   transform: scale(1.05);
 }

 .btn-dislike {
   background-color: #e91e63;
   color: #fff;
 }

 .btn-dislike:hover {
   background-color: #d81b60;
   transform: scale(1.05);
 }

 .react-badge {
   background-color: #fff;
   border-radius: 50%;
   width: 26px;
   height: 26px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   font-weight: 700;
 }

 .left-badge {
   color: #2ecc71;
   border: 2px solid #2ecc71;
   margin-left: -24px;
 }

 .right-badge {
   color: #e91e63;
   border: 2px solid #e91e63;
   margin-right: -24px;
 }

 .btn-reaction svg {
   transition: transform 0.3s ease;
 }

 .btn-reaction:hover svg {
   transform: rotate(-10deg);
 }

 .btn-dislike:hover svg {
   transform: rotate(10deg);
 }
@media (max-width: 767px) {
  .reactions-card {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .comaxmin {
    display: flex !important;
    flex-direction: column !important;
  }
  .comaxmin > div {
    width: 100% !important;
    float: none !important;
  }
}
