#clockdiv {
    font-family: sans-serif;
    color: #000;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Ensures even spacing */
}

#clockdiv > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time {
    font-size: 40px;
    font-weight: bold;
    display: block;
    width: 80px; /* Ensures uniform spacing */
    text-align: center;
}

.smalltext {
    font-size: 16px;
    text-transform: uppercase;
}


/*********TITULOS PARA ARTIGOS***************/

ul.mod-articles-items {
  padding-left: 0;
}

.mod-articles-items > li {
  list-style: none;
  padding-top: 50px;
}

.mod-articles-title {
    text-align: center;
    color: #0078c1;
    margin-bottom: 50px;
}  

.mod-articles-item-content .mod-articles-title h4{
    text-align: center;
    color: #0078c1;
}  


/*************** publiico alvo **************/
.publicoalvo {
    border-left: 3px solid #0073e6; /* 3px left border, blue */
    background-color: #e3f2fd; /* Very light blue (Azul Bebê) */
    padding: 8px; /* Inner spacing */
    margin-bottom: 4px; /* Spacing between rows */
  padding-bottom:1px;
}


/***************+PAINELISTAS ***********************/


.convidados .mod-articles-item-content {
  display: flex;
  flex-direction: column-reverse;
}

.convidados .mod-articles-item {
    text-align: center; /* Center align all content */
    padding: 20px;
    background: #f9f9f9; /* Light gray background for subtle contrast */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */ 
}

.convidados .article-intro-image img{
    width: 120px; /* Adjust size as needed */
    height: 120px;
    object-fit: cover; /* Ensures image covers without distortion */
    border-radius: 50%; /* Makes it round */
    border: 3px solid #0073e6; /* Blue border (adjust color) */
    display: block;
    margin: 0 auto 10px auto; /* Center and space below */
}

/* Style for the keynote speaker container */
.keynotespeaker {
    text-align: center; /* Center align all content */
    padding: 20px;
    background: #f9f9f9; /* Light gray background for subtle contrast */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Round profile image */
.keynotespeaker img {
    width: 120px; /* Adjust size as needed */
    height: 120px;
    object-fit: cover; /* Ensures image covers without distortion */
    border-radius: 50%; /* Makes it round */
    border: 3px solid #0073e6; /* Blue border (adjust color) */
    display: block;
    margin: 0 auto 10px auto; /* Center and space below */
}

/* Styling for keynote speaker's name */
.keynotespeaker-name {
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Darker text for emphasis */
    margin-bottom: 5px;
}

/* Styling for the speaker's title */
.keynotespeaker-title {
    font-size: 14px;
    font-style: italic;
    color: #555; /* Slightly lighter for distinction */
    margin-bottom: 10px;
}

/* Styling for the presentation topic */
.keynotespeaker-topic {
    font-size: 14px;
    color: #222; /* Darker for readability */
    font-weight: 500;
    background: #e3f2fd; /* Light blue background */
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}




