/* BASE */
/*
|--------------------------------------------------------------------------
| Variables
|--------------------------------------------------------------------------
/* GLOBAL*/
/* FONTS*/
/* COLORS */
/* BREAKPOINTS */
/* Extra small mobile */
/* Mobile */
/* Tablet */
/* Middle Sized Devices */
/* Small Laptop */
/* Large Laptop / Desktop */
/* Large Desktop */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/* BLOCKS */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  NEWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#above-news {
  margin-bottom: 2rem;
}
#above-news .above-news-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 768px) {
  #above-news .above-news-content {
    flex-direction: column;
  }
}
#above-news .above-news-content #categories,
#above-news .above-news-content #news-social,
#above-news .above-news-content #weather {
  width: calc(33.33% - 1rem);
}
@media (max-width: 768px) {
  #above-news .above-news-content #categories,
  #above-news .above-news-content #news-social,
  #above-news .above-news-content #weather {
    width: 100%;
  }
}
#above-news .above-news-content #categories h2,
#above-news .above-news-content #news-social h2,
#above-news .above-news-content #weather h2 {
  font-family: "avenir-next-lt-pro", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #9a7450;
  font-size: 1.5em;
  line-height: 1em;
  margin: 0 0 0.5em 0;
  padding: 0;
}
@media (max-width: 768px) {
  #above-news .above-news-content #categories h2,
  #above-news .above-news-content #news-social h2,
  #above-news .above-news-content #weather h2 {
    text-align: center;
  }
}
#above-news .above-news-content #categories h2 {
  margin-bottom: 1.25rem;
}

#categories ul {
  margin: 0;
  padding: 0;
}
#categories ul li {
  margin: 0;
  padding: 0 0 0.75em 0;
  list-style: none;
}
#categories ul li:last-of-type {
  padding: 0;
}
#categories ul li a {
  font-size: 1.188em;
  text-decoration: none;
  color: #001d38;
}
#categories ul li a:hover {
  text-decoration: underline;
  color: #ecf0f2;
}
#categories ul li.current-cat a {
  text-decoration: underline;
  color: #ecf0f2;
}

#news-social ul li {
  display: inline-block;
}
#news-social ul li a {
  display: block;
  color: #9a7450;
  font-size: 1.5em;
  text-decoration: none;
  margin: 0.5rem;
}
#news-social ul li a:hover {
  opacity: 0.65;
}
@media (max-width: 350px) {
  #news-social ul {
    display: none;
  }
}

@media (max-width: 768px) {
  #weather {
    display: none;
  }
}

/* Accuweather */
h3#weathertop-deg {
  font-size: 3em;
  text-align: center;
  font-family: "avenir-next-lt-pro", Arial, Helvetica, sans-serif;
  padding-right: 60px;
  margin-top: 1rem;
}
h3#weathertop-deg span {
  vertical-align: middle;
  position: absolute;
}
h3#weathertop-deg span i {
  width: 60px;
  height: 60px;
  background-position: center;
  position: absolute;
  top: -16px;
}

body.single #slider {
  height: 500px;
}

/*Flex items*/
.news-post-holder {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.5rem;
  margin-bottom: 4rem;
}
.news-post-holder .news-post {
  display: flex;
  width: 33.33%;
  padding: 0.5rem;
}
@media (max-width: 1024px) {
  .news-post-holder .news-post {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .news-post-holder .news-post {
    width: 100%;
  }
}
.news-post-holder .news-post .news-post-content {
  position: relative;
  display: flex;
  background: #ecf0f2;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  min-height: 100%;
  text-align: center;
}
.news-post-holder .news-post .news-post-content img {
  max-width: 100%;
  flex-shrink: 0;
}
.news-post-holder .news-post .news-post-content .post-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.45/1;
  z-index: 1;
  background-color: #ecf0f2;
}
.news-post-holder .news-post .news-post-content .news-post-text {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 1.25rem;
  flex: 1 1 auto;
}
@media (max-width: 640px) {
  .news-post-holder .news-post .news-post-content .news-post-text {
    padding: 1.5rem 1rem 1rem;
  }
}
.news-post-holder .news-post .news-post-content .more {
  align-self: center;
  display: inline-block;
  margin: 0 0 2rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #001d38;
  background-color: rgba(0, 29, 56, 0);
  color: #9a7450;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  -moz-transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  -ms-transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  -o-transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.news-post-holder .news-post .news-post-content .more:hover {
  border-color: #9a7450;
  color: #001d38;
  background-color: rgba(0, 29, 56, 0.1);
}
.news-post-holder .news-post .news-post-content .news-post-text .date {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #001d38;
}
.news-post-holder .news-post .news-post-content .news-post-text h2 {
  font-weight: 500;
  color: #9a7450;
  font-size: 1.5rem;
  line-height: 1.25em;
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 21rem;
}
.news-post-holder .news-post .news-post-content .news-post-text p {
  line-height: 1.5em;
  margin: 0 auto;
  text-align: center;
}

.news-post-single .news-post-title h1, .news-post-single .news-post-title h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #ecf0f2;
  text-align: center;
  margin: 0 0 1rem;
}
.news-post-single .news-post-title .date {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ecf0f2;
}
.news-post-single .news-post-text {
  padding: 2em 0 0;
}
.news-post-single .news-post-text .default-content a {
  color: inherit;
}
.news-post-single .featured-img {
  width: 100%;
  margin-bottom: 0;
  max-width: 1000px;
}
.news-post-single .post-title {
  margin-top: 2rem;
}

.news-back {
  padding: 4em;
}
@media (max-width: 640px) {
  .news-back {
    padding: 2em;
  }
}

#btn_loadmore {
  width: 250px;
  margin: 1em auto 0;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
}
#btn_loadmore .boxbtn:after {
  display: none;
}

nav.pagination {
  text-align: center;
  margin: 3rem 0 4rem;
}
nav.pagination:first-of-type {
  margin: 0 0 3rem;
}
nav.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
nav.pagination .nav-links a, nav.pagination .nav-links span {
  font-weight: 500;
  width: 40px;
  height: 40px;
  color: #001d38;
  border: 1px solid #001d38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: rgba(var(--secondary-color-rgb), 0);
  -webkit-transition: color 0.5s ease, background-color 0.5s ease;
  -moz-transition: color 0.5s ease, background-color 0.5s ease;
  -ms-transition: color 0.5s ease, background-color 0.5s ease;
  -o-transition: color 0.5s ease, background-color 0.5s ease;
  transition: color 0.5s ease, background-color 0.5s ease;
}
nav.pagination .nav-links a:hover, nav.pagination .nav-links a.current, nav.pagination .nav-links span:hover, nav.pagination .nav-links span.current {
  color: #9a7450;
  background-color: #ecf0f2;
}

/*# sourceMappingURL=content-news.css.map */
