
.blog-section{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.blog_post {
  background: #fff;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
  position: relative;
}
.container_copy {
  padding: 2rem 2rem 2rem 3rem;    
}
p {
  margin: 0 0 .8rem 0; 
  font-size: 1rem;
  line-height: 1.2;
  color: #000; 
}
.byline{
  font-size: .9rem; 
  font-style: italic;
  font-weight: 300;
} 
.media-title{
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3rem;  
}
.btn-blg {
  border: none;
  outline: none;
  background: linear-gradient(90deg, #cc3535, #900); 
  padding: .5rem 1rem; 
  border-radius: 50px;
  color: white;
  font-size: 1rem; 
  box-shadow: 1px 10px 2rem rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in;
  text-decoration: none;
}

.btn-blg:hover {
  color: #900;
  background: linear-gradient(90deg, #bebebe, #757474); 
}
 

.img_pod {
  height: 125px;
  width: 125px;
  z-index: 10;
  position: absolute;
  left: -10%;
  top: -13%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ico {
  height: 80px; 
  border-radius: 100%; 
  background: #fff;
  border: 1px solid #000; 
  z-index: 1;
  box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
  
}

.blog-img img {
  width: 100%;
  transition: all 0.5s ease;
}
.blog-item:hover .blog-img img {
transform: scale(1.05) rotate(1deg);
}
.blog-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-info h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	padding-right: 80px;
}
.blog-info-content {
    position: absolute;
    bottom: 57px;
    padding: 0 60px;
    width: 100%;
    z-index: 99; 
}
.blog-info-content > span {
	color: #FFFFFF;
	font-size: 15px;
	margin-bottom: 16px;
	display: block;
}
.blog-info-content > span i {
	margin-right: 1px;
}
.calendar-date {
	position: absolute;
	top: 55px;
	left: 60px;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	z-index: 99;
}
.calendar-date i {
	margin-right: 2px;
}
.blog-card{
  display: flex;
  flex-direction: column;
  border: 1px solid #900;
  padding: 15px;
  border-radius: 12px;
  margin: 5px;
  position: relative; 
}
.blog-card:hover{
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.blog-card.card-alt{
  border: 1px solid #121212;
  background-color: #000; 
}
.blog-card.card-alt-two{
  border: 1px solid #454545;
  background-color: #454545; 
}
.blog-card h3 a{
  color: #121212;
  font-size: 1rem;
  line-height: 1.1rem;  
  font-weight: 500;  
} 
 

.blog-card span{
  font-size: .7rem; 
}
.card-footer {
  margin-top: auto;
}
.blog-card.card-alt h3 a {
  color: #fff; 
} 
.blog-card.card-alt span {
  color: #ccc; 
}
.blog-card.card-alt-two h3 a {
  color: #fff; 
} 
.blog-card.card-alt-two span {
  color: #ccc; 
}
.blog-card .video-container {
  margin-top: 10px;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px; 
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-container.vertical {
  position: relative;
  padding-bottom: 177.78%; /* (16/9 * 100) for a 9:16 aspect ratio */
  overflow: hidden;
}

.video-container.vertical iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
  
.custom-row {
  display: flex;
  justify-content: space-between; /* Or space-around/evenly as preferred */
  flex-wrap: wrap;
}
.media-img{
  border-radius: 12px; 
}

.callout-section{
  padding-top: 0;
  padding-bottom: 0; 
}