/*
 Theme Name:   The7 Child
 Theme URI:    https://the7.io/
 Description:  CSSp personalization for the7
 Author:       Vic
 Author URI:   https://spiritanroma.org
 Template:     dt-the7
 Version:      1.0.0
*/

/* O teu CSS personalizado começa abaixo desta linha */
.table-history table
{ border: none;
} 
.table-history th
{ border: none;
vertical-align: text-top;
margin: 0px 10px 15px 0px;
padding: 5px 5px 5px 5px;
color: #800000;
} 
.table-history td 
{ border: none;
vertical-align: text-top;
margin: 0px 10px 15px 0px;
padding: 5px 5px 5px 5px;
}

.table-history tr:hover {
background-color: #FFF5EE;
}

.mini-wpml .wpml-ls-current-language > a {
color: #dd9933;
}

.wpml-ls-statics-post_translations {
margin-top: 50px;
}

        #login h1 a, .login h1 a {
            background-image: url(https://spiritanroma.org/wp-content/uploads/2017/09/cssp-logo-120.png);
		height:65px;
		width:320px;
		background-size: 320px 65px;
		background-repeat: no-repeat;
        	padding-bottom: 30px;
        }

.wpb_wrapper h3 {
	margin-top: 30px;
}

.__ex_post_header {
    position: relative; /* Necessário para o overlay se posicionar em relação a isto */
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: block;
}

.__ex_post_header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.__ex_post_header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none; /* Garante que podes clicar na imagem se houver um link por baixo */
}

.__ex_post_title {
    position: absolute;
    bottom: 30px;        /* Distância do fundo */
    left: 50%;           /* Move para o meio */
    transform: translateX(-50%); /* Garante que o centro do texto é o centro da imagem */
    
    width: 90%;          /* Dá margem nas laterais para não bater nas bordas */
    margin: 0;
    padding: 0;
    
    color: #ffffff;      /* Branco */
    text-align: center;  /* Centra o texto */
    font-size: 2rem;   /* Ajusta conforme o teu gosto */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para ler melhor */
    
    z-index: 2;          /* Acima da imagem (0) e do overlay (1) */
}

.__ex_post_container {
    /* Ajusta o max-width para o valor que definiste no WP */
    max-width: 1200px; 
    margin: 40px auto; /* Centra horizontalmente */
    padding: 0 50px;   /* Ajusta este valor para igualar as tuas margens do WP */
    
    display: flex;
    gap: 40px;         /* Espaço entre as duas colunas */
}

/* Coluna do texto (66% de largura) */
.__ex_post_main {
    flex: 2;
}

/* Coluna de info extra (33% de largura) */
.__ex_post_side {
    flex: 1;
    background-color: #f9f9f9; /* Exemplo: um fundo leve para destacar */
    padding: 20px;
    border-radius: 8px;
}

.today_history_title {
    font-family: "Georgia", serif;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.1;
    color: #333;
    margin-bottom: 2px;
}

.today_quote {
    font-family: "Georgia", serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
}

.today_quote::before {
    content: "\201C"; 
    font-size: 3em; 
    line-height: 0.1em;
    margin-right: 10px;
    vertical-align: -0.4em;
    color: #2c3e50;
    opacity: 0.3;
    font-family: "Georgia", serif; 
}

.ex_excerpt {
    font-size: 13px;
	line-height: 18px;
	color: #565656;
}

.ex_post_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media(max-width: 900px) {
	.ex_post_container {
	  grid-template-columns: 1fr 1fr;
	}
}

@media(max-width: 600px) {
	.ex_post_container {
	  grid-template-columns: 1fr;
	}
}

.ex_post {
	position: relative;
	background: #F1F1F1;
}

.ex_post_container a {
	text-decoration: none;
}

.img-hover-zoom {
  height: 150px;
  overflow: hidden; 
}

.img-hover-zoom img {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
	object-fit: cover;
  width: 100%;
  max-height: 100%;
}

.ex_post:hover img {
  transform: scale(1.5);
}

.ex_post_content {
	padding: 15px;
	position: relative;
}

.ex_post_title {
	font-size: 18px;
	line-height: 24px;
	color: black;
	font-weight: 700;
	margin-bottom: 12px;
	display: block;
}

.ex_post_title:hover {
	color: #498ecc;
}

.ex_post_ref {
	font-size: 13px;
	line-height: 18px;
	color: #848484;
	margin-bottom: 12px;
}

.ex_post_descr {
	font-size: 13px;
	line-height: 18px;
	color: #565656;
}

.ex_post_category {
 	display: block;
    font-size: 14px;
	position: absolute;
	top: 0px;
	right: 0px;
	background: rgba(0, 0, 0, 0.8);;
	padding: 5px;
	font-weight: 700;
	color: white;
}

@media (max-width: 991px) {
    .__ex_post_container {
        flex-direction: column;
        padding: 0 20px; /* Margens menores em ecrãs pequenos */
    }
    
    .__ex_post_main, .ex_post_side {
        width: 100%;
    }
}