/* Styles form page blocks */

.subscribe-btn	{
		background: transparent;
		            color: white;
		            border-color: white;
		}

.footer-wrap p, .footer-wrap span	{
		font-size: 13px!important;
		}

.cookie-policy-link	{
		color:White !important;
		                text-decoration: underline;
		}

.cookie-policy-link:hover	{
		color:lightgray !important;
		                text-decoration: none;
		}

.cookiecolor	{
		color:White !important;
		}

.cookiebg	{
		background-color: rgba(0, 0, 153,.6);
		}

.cookiemsg	{
		overflow: hidden;
		                 z-index:10000;
		                right:0;
		                position:fixed;
		}

/* END Styles form page blocks */

.post-meta {
    background: #F3F9FD;
    border: 1px solid #DBE6EE;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.02em;
    padding-top: 10px;
    padding-bottom: 10px;
}

.col-md-8 img {
  display: block;
  margin: 25px 0; /* 25px pentru sus/jos și 0 pentru stânga/dreapta */
  border-radius: 10px;
}

h1,h2 {
    color: #1789c4 !important;
}
/* Animatie imagini */
.col-md-8 img {
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}

/* Starea finală, vizibilă (această clasă va fi adăugată de JavaScript) */
.col-md-8 img.is-visible {
  opacity: 1; 
  transform: translateY(0); 
}