﻿html, body {
    overflow-wrap: break-word;
    font-family: 'Source Sans 3', sans-serif;
}

.font-open-sans {
  font-family: 'Open Sans', sans-serif;
}

h3 {
    font-family: "Open Sans", sans-serif;
}

img {
    border-radius: 5px;
}

.header-text-1 {
    font-size: 0.9375rem;
    color: #ffffff;
    margin: 0;
}

.logo {
    width: 100%;
    max-width: 120px;
    padding: 15px 0;
    margin: 0 auto;
}

.title-1 {
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: "Open Sans", sans-serif;
    }


.subtitle-1 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: normal;
    font-family: "Open Sans", sans-serif;
}

.subtitle-2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
}


blockquote, .blockquote {
    font-size: 1.1rem;
    background-color: #eee;
    border-left: 5px solid #cc0000;
    padding: 20px;
    line-height: 1.5;
    font-weight: 700;
}


audio{
    display:block;
    margin:auto;
}

/* AUTHOR */

.author-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
}
.author-image {
    max-width: 50px;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.author-text {
    font-size: 0.8125rem;
    margin: 0;
    font-weight: 600;
    color: #1a4a89;
    padding-right: 8px;
}

.date {
    font-size: 0.75rem;
    margin: 0;
    color: #999;
}

/* ----- DIVIDERS Y COUPON ----- */
.coupon-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin: 30px 0;
    position: relative;
}

.coupon-divider .line {
    flex-grow: 1;
    border-top: 2px dotted #aaa;
    position: relative;
    height: 1px;
}

.coupon-divider .scissors {
    position: absolute;
    transform: rotate(-20deg);
    max-width: 20px;
    left: 20px;
    top: 0px;
}

.coupon-divider .label {
    font-size: 0.6875rem;
    font-weight: 500;
    white-space: nowrap;
    color: #000;
}


/* MEDIA QUERIES */
@media (min-width: 768px) {
   
  .author-container { align-items: center; }
  .logo {margin: 0;}
  .title-1 {line-height: 1.2;} 
  .subtitle-1 {font-size: 1.5rem;}

  /*COUPON*/
  .coupon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin: 30px 0;
  position: relative;
}

.coupon-divider .line {
  flex-grow: 1;
  border-top: 2px dotted #aaa;
  position: relative;
  height: 1px;
}

.coupon-divider .label {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: #000;
}

.coupon-divider .scissors {
  position: absolute;
  right: 20px;
  top: -6px;
  max-width: 30px;
  transform: rotate(-20deg); /* opcional: para inclinar la tijera */
}

}