@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap");
:root {
  --primario: #E2403C;
  --secundario: #465C6D;
  --texto: #000000;
  --verde: #61963A;
  --gris: #525152;
  --rojo: #E84941;
  --rosa: #EA4B84;
  --spotlight: #070F57;
}

html {
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--texto);
}

main {
  padding: 20px 0px;
}

@media (max-width: 672px) {
  main {
    padding-top: 80px;
  }
}
.bg-primario {
  background-color: var(--primario) !important;
}

.color-primario {
  color: var(--primario) !important;
}

.border-primario {
  border-color: var(--primario) !important;
}

.bg-secundario {
  background-color: var(--secundario) !important;
}

.color-secundario {
  color: var(--secundario) !important;
}

.border-secundario {
  border-color: var(--secundario) !important;
}

.bg-texto {
  background-color: var(--texto) !important;
}

.color-texto {
  color: var(--texto) !important;
}

.border-texto {
  border-color: var(--texto) !important;
}

.bg-verde {
  background-color: var(--verde) !important;
}

.color-verde {
  color: var(--verde) !important;
}

.border-verde {
  border-color: var(--verde) !important;
}

.bg-rosa {
  background-color: var(--rosa) !important;
}

.color-rosa {
  color: var(--rosa) !important;
}

.border-rosa {
  border-color: var(--rosa) !important;
}

.bg-rojo {
  background-color: var(--rojo) !important;
}

.color-rojo {
  color: var(--rojo) !important;
}

.border-rojo {
  border-color: var(--rojo) !important;
}

.nota {
  margin-bottom: 10px;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
}
.nota a {
  color: black;
}
.nota a:hover {
  text-decoration: underline;
}
.nota .nota__categoria {
  margin-bottom: 5px;
}
.nota .nota__categoria p {
  margin-bottom: 0px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: lighter;
}
.nota .nota__label {
  background: black;
  display: inline-block;
  padding: 5px 15px;
  margin-left: -15px;
  padding-left: 15px;
  margin-bottom: 10px;
  max-width: 100px;
  text-transform: uppercase;
}
.nota .nota__label p {
  margin-bottom: 0px;
  font-size: 12px;
}
.nota .nota__label p a {
  color: white;
}
.nota .nota__body h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
}
.nota .nota__image {
  width: 100%;
  height: 150px;
  margin-top: 5px;
}
.nota .nota__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nota.nota--principal {
  box-shadow: 1px 1px 3px 2px rgba(84, 83, 83, 0.4);
  margin-bottom: 30px;
  padding-bottom: 0px;
  border-bottom: 0px;
}
.nota.nota--principal .nota__image {
  height: 250px;
  position: relative;
}
.nota.nota--principal .nota__categoria {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: black;
  z-index: 1;
  padding: 7px 15px;
  margin-bottom: 0px;
}
.nota.nota--principal .nota__categoria a {
  color: white;
}
.nota.nota--principal .nota__body {
  padding: 10px;
}
.nota.nota--principal .nota__body h3 {
  font-size: 24px;
  line-height: 27px;
  width: 95%;
  text-transform: uppercase;
}
.nota.nota--principal .nota__body p {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 0px;
}

@media (max-width: 672px) {
  .nota .nota__image {
    height: auto;
  }
  .nota.nota--principal {
    box-shadow: none;
    margin-bottom: 20px;
  }
  .nota.nota--principal .nota__image {
    height: auto;
    margin-top: 0px;
  }
  .nota.nota--principal .nota__body h3 {
    width: 100%;
  }
}
.section {
  margin-bottom: 20px;
}
.section .section__header {
  border-bottom: 2px solid black;
  margin-bottom: 10px;
}
.section .section__header h2 {
  font-size: 20px;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: bold;
}
.section .section__header h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 5px;
}
.section .section__header a {
  color: white;
}
.section .section__header a:hover {
  text-decoration: underline;
}
.section.section--destacadas .section__body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.section.section--destacadas .section__body .nota {
  flex: 1 1 auto;
  width: calc(50% - 10px);
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-left: 10px;
}
.section.section--destacadas .section__body .nota .nota__image {
  margin-top: 0px;
  margin-bottom: 10px;
}
.section.section--destacadas .section__body .nota:nth-child(2n+1) {
  margin-right: 10px;
  margin-left: 0px;
}
.section.section--destacadas.section--shadow {
  box-shadow: 1px 1px 3px 2px rgba(84, 83, 83, 0.4);
  padding: 10px;
}
.section.section--destacadas.section--shadow .nota {
  width: calc(25% - 10px);
}
.section.section--destacadas.section--shadow .nota .nota__image {
  height: 100px;
}
.section.section--destacadas.section--shadow .nota .nota__categoria p {
  font-size: 11px;
}
.section.section--destacadas.section--shadow .nota .nota__body h3 {
  font-size: 14px;
}
.section.section--destacadas.section--shadow .nota:nth-child(2n+1) {
  margin-left: 10px;
  margin-right: 0px;
}
.section.section--destacadas.section--shadow .nota:first-child {
  margin-left: 0px;
}
.section.section--fotogaleria .section__header {
  border-bottom: none;
  margin-bottom: 5px;
}
.section.section--fotogaleria .section__body {
  box-shadow: 1px 1px 3px 2px rgba(84, 83, 83, 0.4);
  display: flex;
  align-items: flex-start;
  padding: 10px;
}
.section.section--fotogaleria .section__body .nota {
  border-bottom: none;
  padding-bottom: 0;
}
.section.section--fotogaleria .section__body .nota .nota__image {
  margin-top: 0px;
}
.section.section--fotogaleria .section--fotogaleria__principal {
  width: calc(66.66% - 10px);
  margin-right: 10px;
}
.section.section--fotogaleria .section--fotogaleria__principal .nota .nota__image {
  height: 300px;
}
.section.section--fotogaleria .section--fotogaleria__principal .nota .nota__body h3 {
  font-size: 24px;
  line-height: 27px;
}
.section.section--fotogaleria .section--fotogaleria__principal .nota .nota__body p {
  font-size: 14px;
  line-height: 17px;
}
.section.section--fotogaleria .section--fotogaleria__mediano {
  width: 33.33%;
  padding: 0px 5px;
}

.section--category {
  box-shadow: 1px 1px 7px 4px rgba(84, 83, 83, 0.4);
}
.section--category .section__header {
  padding: 5px 15px;
  border-bottom: none;
  margin-bottom: 0px;
}
.section--category .section--category__principal .nota {
  display: flex;
  justify-content: center;
  align-items: initial;
  border-bottom: none;
  margin-bottom: 5px;
  padding-bottom: 0px;
}
.section--category .section--category__principal .nota .nota__image {
  width: calc(66.66% + 20px);
  height: auto;
  margin-top: 0px;
}
.section--category .section--category__principal .nota .nota__body {
  width: 35%;
  background: #525152;
  color: white;
  height: auto;
  padding: 15px;
  position: relative;
}
.section--category .section--category__principal .nota .nota__body h3 {
  font-size: 22px;
  line-height: 25px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
}
.section--category .section--category__principal .nota .nota__body h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 30%;
  height: 3px;
  background: black;
  left: 0px;
  z-index: 1;
}
.section--category .section--category__principal .nota .nota__body p {
  font-size: 14px;
}
.section--category .section--category__mediano {
  margin-bottom: 5px;
  display: flex;
}
.section--category .section--category__mediano .nota {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  flex: 1 1 auto;
  margin-right: 5px;
}
.section--category .section--category__mediano .nota .nota__image {
  margin-top: 0px;
  position: relative;
  z-index: 1;
}
.section--category .section--category__mediano .nota .nota__image .nota__body {
  bottom: 0px;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0px 15px;
  background: linear-gradient(45deg, black, transparent);
  color: white;
}
.section--category .section--category__mediano .nota .nota__image .nota__body h3 {
  position: relative;
  padding-bottom: 10px;
}
.section--category .section--category__mediano .nota .nota__image .nota__body h3:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 30%;
  height: 3px;
  background: #61963a;
  left: 0px;
  z-index: 1;
}
.section--category .section--category__mediano .nota:last-child {
  margin-right: 0px;
}
.section--category .section--category__chico {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 5px;
}
.section--category .section--category__chico .nota {
  flex: 1 1 auto;
  margin-right: 5px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
  background: var(--gris);
  color: white;
}
.section--category .section--category__chico .nota .nota__body {
  padding: 15px 15px 10px;
}
.section--category .section--category__chico .nota .nota__body h3 {
  position: relative;
  padding-bottom: 10px;
}
.section--category .section--category__chico .nota .nota__body h3:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 30%;
  height: 3px;
  background: #61963a;
  left: 0px;
  z-index: 1;
}
.section--category .section--category__chico .nota .nota__body h3 a {
  color: white;
}
.section--category .section--category__chico .nota:last-child {
  margin-right: 0px;
}

.section--category.bg-rojo .section--category__principal .nota .nota__body {
  background-color: white;
  color: black;
}
.section--category.bg-rojo .section--category__principal .nota .nota__body a {
  color: black;
}
.section--category.bg-rojo .section--category__principal .nota .nota__body .nota__label p a {
  color: white;
}
.section--category.bg-rojo .section--category__mediano .nota .nota__image .nota__body h3:after {
  background-color: var(--rojo);
}
.section--category.bg-rojo .section--category__chico .nota {
  background-color: transparent;
}
.section--category.bg-rojo .section--category__chico .nota h3:after {
  background-color: white;
}

.section--category.bg-rosa .section--category__principal .nota .nota__body {
  background-color: white;
  color: black;
}
.section--category.bg-rosa .section--category__principal .nota .nota__body a {
  color: black;
}
.section--category.bg-rosa .section--category__principal .nota .nota__body .nota__label p a {
  color: white;
}
.section--category.bg-rosa .section--category__mediano .nota .nota__image .nota__body h3:after {
  background-color: var(--rosa);
}
.section--category.bg-rosa .section--category__chico .nota {
  background-color: transparent;
}
.section--category.bg-rosa .section--category__chico .nota h3:after {
  background-color: white;
}

@media (max-width: 672px) {
  .section.section--destacadas.section--shadow {
    box-shadow: none;
    padding: 0px;
  }
  .section.section--destacadas.section--shadow .nota {
    width: calc(50% - 10px);
    margin-left: 0px !important;
  }
  .section.section--destacadas.section--shadow .nota:nth-child(2n+1) {
    margin-right: 10px !important;
  }
  .section.section--fotogaleria .section__body {
    flex-direction: column;
    box-shadow: none;
    padding: 0px;
  }
  .section.section--fotogaleria .section__body .section--fotogaleria__principal {
    width: 100%;
    margin-right: 0px;
  }
  .section.section--fotogaleria .section__body .section--fotogaleria__principal .nota .nota__image {
    height: auto;
  }
  .section.section--fotogaleria .section__body .section--fotogaleria__mediano {
    width: 100%;
  }

  .section--category .section--category__principal .nota {
    flex-direction: column;
  }
  .section--category .section--category__principal .nota .nota__image {
    width: 100%;
  }
  .section--category .section--category__principal .nota .nota__body {
    width: 100%;
  }
  .section--category .section--category__mediano {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .section--category .section--category__mediano .nota {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  .section--category .section--category__chico {
    flex-direction: column;
    padding-bottom: 0px;
  }
  .section--category .section--category__chico .nota {
    margin-bottom: 5px;
    margin-right: 0px;
  }
}
.banner {
  box-shadow: 1px 1px 3px 2px rgba(84, 83, 83, 0.4);
  margin-bottom: 15px;
}
.banner img {
  width: 100%;
}

.header__top {
  padding: 10px 0px;
}
.header__top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__top .container .header__right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.header__top .container .header__right .header__redes {
  padding-right: 10px;
  border-right: 2px solid #000;
}
.header__top .container .header__right .header__redes ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__top .container .header__right .header__redes ul li {
  width: 24px;
  margin: 0px 5px;
}
.header__top .container .header__right .header__redes ul li img {
  width: 100%;
}
.header__top .container .header__right .header__redes p {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.header__top .container .header__right .header__clima {
  padding-left: 10px;
}
.header__top .container .header__right .header__clima .hc__grados {
  font-size: 35px;
  margin-bottom: 0px;
  text-align: center;
}
.header__top .container .header__right .header__clima .hc__ciudad {
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.header__top .container .header__right .header__radio {
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.header__top .container .header__right .header__radio .hr__texto {
  position: relative;
  z-index: 1;
  right: 4px;
}
.header__top .container .header__right .header__radio .hr__texto p {
  margin-bottom: 0px;
  text-align: center;
}
.header__top .container .header__right .header__radio .hr__texto p:first-child {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
}
.header__top .container .header__right .header__radio .hr__texto p:last-child {
  background: black;
  color: aliceblue;
  text-transform: uppercase;
  font-size: 14px;
  padding: 2px 10px;
}

.menu__icon {
  display: none;
  cursor: pointer;
}
.menu__icon .bar1, .menu__icon .bar2, .menu__icon .bar3 {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.4s;
}
.menu__icon.active .bar1 {
  -webkit-transform: rotate(-45deg) translate(-2px, 3px);
  -moz-transform: rotate(-45deg) translate(-2px, 3px);
  -ms-transform: rotate(-45deg) translate(-2px, 3px);
  -o-transform: rotate(-45deg) translate(-2px, 3px);
  transform: rotate(-45deg) translate(-2px, 3px);
}
.menu__icon.active .bar2 {
  opacity: 0;
}
.menu__icon.active .bar3 {
  -webkit-transform: rotate(45deg) translate(-5px, -7px);
  -moz-transform: rotate(45deg) translate(-5px, -7px);
  -ms-transform: rotate(45deg) translate(-5px, -7px);
  -o-transform: rotate(45deg) translate(-5px, -7px);
  transform: rotate(45deg) translate(-5px, -7px);
}

.header__bottom {
  background: black;
  color: white;
  padding: 5px 0px;
  margin-top: 10px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .logo__image {
  width: 60px;
  height: 60px;
  padding: 0px;
  border-radius: 5px;
  background: white;
  box-shadow: 1px 1px 7px 4px rgba(84, 83, 83, 0.4);
  margin-right: 10px;
}
.logo .logo__image img {
  width: 100%;
  height: 100%;
}
.logo .logo__text h2 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 28px;
}
.logo .logo__text p {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 4px;
  margin-bottom: 0px;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  list-style: none;
  margin-left: 0px;
  padding-left: 0;
}
nav ul li {
  font-size: 15px;
  padding: 0px 8px;
}
nav ul li.mobile__redes {
  display: none;
}
nav ul li.spotlight {
  position: relative;
  background: var(--spotlight);
  z-index: 1;
  margin-right: 20px;
  font-weight: bold;
  text-transform: uppercase;
  top: 3px;
}
nav ul li.spotlight:after {
  content: "";
  position: absolute;
  top: -12px !important;
  width: 130%;
  left: -15%;
  height: 44px;
  background: var(--spotlight);
  z-index: -1;
  -webkit-transform: skew(-40deg);
  -moz-transform: skew(-40deg);
  -ms-transform: skew(-40deg);
  -o-transform: skew(-40deg);
  transform: skew(-40deg);
}
nav ul li a {
  color: rgba(255, 255, 255, 0.8);
}
nav ul li a:hover {
  color: white;
}
nav ul li.active a {
  color: white;
}

@media (max-width: 672px) {
  header {
    position: fixed;
    top: 0px;
    z-index: 100;
    left: 0px;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0px 3px 8px 1px rgba(84, 83, 83, 0.4);
    -moz-box-shadow: 0px 3px 8px 1px rgba(84, 83, 83, 0.4);
    -ms-box-shadow: 0px 3px 8px 1px rgba(84, 83, 83, 0.4);
    -o-box-shadow: 0px 3px 8px 1px rgba(84, 83, 83, 0.4);
    box-shadow: 0px 3px 8px 1px rgba(84, 83, 83, 0.4);
  }

  .header__top .container .header__right {
    display: none;
  }
  .header__top .logo__image {
    width: 40px;
    height: 40px;
  }
  .header__top .logo__text h2 {
    font-size: 20px;
    line-height: 20px;
  }
  .header__top .logo__text p {
    font-size: 12px;
  }

  .header__bottom {
    display: none;
    position: fixed;
    z-index: 100;
    width: 100%;
    left: 0px;
    top: 60px;
    padding: 15px 0px;
    background: white;
    color: black;
    border-top: 1px solid black;
    margin-top: 0px;
  }
  .header__bottom nav ul {
    flex-direction: column;
    margin-left: 0px;
    padding-left: 0;
  }
  .header__bottom nav ul li {
    margin: 10px 0px;
  }
  .header__bottom nav ul li.spotlight {
    color: white;
  }
  .header__bottom nav ul li.spotlight:after {
    width: 110%;
    left: -5%;
  }
  .header__bottom nav ul li.mobile__redes {
    display: block;
  }
  .header__bottom nav ul li.mobile__redes img {
    width: 25px;
    margin: 0px 8px;
  }
  .header__bottom.active {
    display: block;
  }

  .menu__icon {
    display: inline-block;
  }
}
footer {
  background: black;
  padding: 20px 0px 40px;
  color: white;
  text-align: center;
}
footer nav {
  margin: 30px 0px;
}
footer .footer__copyright p {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 18px;
}

@media (max-width: 672px) {
  footer nav ul {
    flex-direction: column;
  }
  footer nav ul li {
    margin: 10px 0px;
  }
  footer .footer__copyright p {
    margin-bottom: 5px;
    font-size: 13px;
  }
}
.noticias .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.content {
  width: calc(100% - (200px - 10px));
  margin-right: 10px;
}
.content .content__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.content .content__body .content__big {
  width: calc(100% - 300px);
  margin-right: 0px;
}
.content .content__body .content__big:not(.content__big_sinsmall) {
  border-right: 1px solid black;
  padding-right: 15px;
  margin-right: 5px;
}
.content .content__body .content__big.content__big_sinsmall {
  width: 100%;
  margin-right: 0px;
}
.content .content__body .content__small {
  width: 300px;
  padding: 0px 10px;
}

.sidebar {
  width: 200px;
}

@media (max-width: 672px) {
  .noticias .container {
    flex-direction: column;
  }

  .content {
    width: 100%;
    margin-right: 0px;
  }
  .content .content__body {
    flex-direction: column;
  }
  .content .content__body .content__big {
    width: 100%;
    margin-right: 0px;
  }
  .content .content__body .content__big:not(.content__big_sinsmall) {
    margin-right: 0px;
    border: none;
    padding-right: 0px;
  }
  .content .content__body .content__small {
    width: 100%;
    padding: 0px;
  }
  .content .content__body .content__small .nota:last-child {
    border-bottom: none;
    padding-bottom: 0px;
  }

  .sidebar {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */

/*-------------------------------------------------------*/
/* Main Entry Styles
/*-------------------------------------------------------*/
.entry {
	overflow: hidden;
	position: relative;
	margin-bottom: 30px; }
	.entry__img-holder {
		position: relative;
		overflow: hidden;
		margin-bottom: 20px;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 50%; }
	.entry__img {
		width: 100%; }
	.entry__title {
		font-size: 18px;
		line-height: 1.4;
		margin-top: 3px;
		margin-bottom: 5px; }
		.entry__title:hover a {
			color: #2D95E3; }
		.entry__title--sm {
			font-size: 15px; }
	.entry__excerpt {
		margin-top: 16px; }
		.entry__excerpt p {
			margin-bottom: 0; }
	.entry__play-time {
		position: absolute;
		bottom: 32px;
		left: 32px;
		background-color: #2D95E3;
		color: #fff;
		padding: 7px 11px;
		font-weight: 700;
		pointer-events: none; }
		.entry__play-time i {
      margin-right: 5px; }
      
/* Meta
-------------------------------------------------------*/
.entry__meta li {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #83858F; }
	.entry__meta li:after {
		content: '-';
		display: inline-block;
		margin: 0 3px; }
	.entry__meta li.entry__meta-views:after {
		content: '';
		margin: 0 8px;
		display: inline-block; }
	.entry__meta li:last-child:after {
		display: none; }

.entry__meta a {
	color: #2D95E3; }
	.entry__meta a:hover {
		color: #171821; }

.entry__meta i {
	display: inline-block;
	margin-right: 5px; }

.entry__meta-category {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 3px;
	font-weight: 700;
	color: #0098d0; }
	.entry__meta-category--label {
		font-size: 10px;
		background-color: #2D95E3;
		padding: 5px 10px;
		z-index: 2;
		color: #fff;
		margin-bottom: 0;
		display: inline-block; }
		.entry__meta-category--label:hover, .entry__meta-category--label:focus {
			color: #fff;
			opacity: 0.90; }
	.entry__meta-category--align-in-corner {
		position: absolute;
		left: 16px;
		bottom: 16px; }
	.entry__meta-category--violet {
		background-color: #3E3EDD; }
	.entry__meta-category--purple {
		background-color: #9C27B0; }
	.entry__meta-category--blue {
		background-color: #0E79C9; }
	.entry__meta-category--cyan {
		background-color: #00BCD4; }
	.entry__meta-category--green {
		background-color: #19C22A; }
	.entry__meta-category--orange {
		background-color: #E65100; }
	.entry__meta-category--red {
    background-color: #F44336; }
	.entry__meta-category--white {
		background-color: #FFF; }    

.entry__meta-rating i {
	font-size: 16px;
	color: #FBC02D;
	margin-right: 2px; }

.entry__meta + .entry__meta,
.entry__meta-category--label + .entry__meta {
	margin-top: 16px; }

.entry__meta + .entry__img-holder {
	margin-top: 20px; }

.entry__meta-holder {
	margin-top: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between; }
	.entry__meta-holder .entry__meta {
		margin-top: 0; }

.entry-date-label {
	background-color: #fff;
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px;
	text-align: center;
	font-family: "Montserrat", sans-serif; }
	.entry-date-label__weekday, .entry-date-label__month {
		font-size: 8px;
		text-transform: uppercase;
		line-height: 1;
		font-weight: 600; }
	.entry-date-label__weekday {
		color: #54555E; }
	.entry-date-label__day {
		color: #2D95E3;
		font-weight: 700;
		font-size: 16px;
		line-height: 1.25; }
	.entry-date-label__month {
    color: #2D95E3; }
    

/*-------------------------------------------------------*/
/* Single Post
/*-------------------------------------------------------*/
.entry__article-wrap {
	margin-top: 40px;
	margin-bottom: 40px; }

@media only screen and (min-width: 992px) {
	.entry__article-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex; } }

.entry__article > h1,
.entry__article > h2,
.entry__article > h3,
.entry__article > h4,
.entry__article > h5,
.entry__article > h6 {
	margin-top: 36px; }

.entry__article > p {
	margin-bottom: 34px;
	font-size: 18px;
	line-height: 30px; }

.entry__article p > a {
	text-decoration: underline; }

.entry__article figure {
	margin-bottom: 24px; }

.entry__article ol, .entry__article ul {
	line-height: 26px; }

.entry__article ul {
	list-style: disc; }

figure {
	margin: 0; }

figcaption {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 12px;
	font-style: italic;
	margin-top: 10px;
  color: #83858F; }
  
a.categorie:hover {
  color: white;
  text-decoration: none;
}

a.categorie {
  color: white;
}

.mobile-menu {
  background-color: black;
}