
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.poster-container {
    width: 700px; /* Adjust as needed for poster size */
    background-color: #3b004a; /* Dark purple/maroon background */
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Header Section */
.poster-header {
    margin-bottom: 25px;
    position: relative;
    padding-top: 10px;
}

.poster-header h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
    line-height: 1.1;
    color: #f7931e; /* Orange for the main title */
}

.poster-header .subtitle {
    background-color: #f7931e; /* Orange background for subtitle */
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    margin-top: 10px;
    margin-bottom: 20px;
}

.inmujer-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px; /* Adjust size as needed */
    height: auto;
}

/* Rights Grid Section */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 15px; /* Space between grid items */
    margin-bottom: 30px;
}

.right-item {
    background-color: #5d0f62; /* Slightly lighter purple */
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 150px; /* Ensure consistent height for items */
    justify-content: center;
    box-sizing: border-box; /* Include padding in dimensions */
}

.right-item img {
    width: 60px; /* Size of the icons */
    height: 60px;
    margin-bottom: 10px;
    /* Placeholder background for icons */
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 5px; /* Small padding around the icon if needed */
}

.right-item p {
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
}

.illustration-item {
    grid-column: span 1; /* Occupies 1 column */
    background-color: #5d0f62; /* Background for illustration box */
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 150px; /* Match height of other items */
    box-sizing: border-box;
}

.illustration-item img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Placeholder background for the main illustration */
    background-color: #ccc;
    min-height: 120px; /* To make placeholder visible */
    object-fit: contain; /* Ensures the image fits within its bounds */
}

.illustration-item .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg); /* Rotate slightly like in the image */
    background-color: #f7931e; /* Orange background for the text */
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    white-space: nowrap; /* Prevent text from wrapping */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}


/* Hashtag */
.hashtag {
    background-color: #f7931e; /* Orange background */
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    margin-bottom: 25px;
    background-color: #5d0f62; /* Lighter purple background */
    padding: 15px;
    border-radius: 10px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info p span {
    display: flex;
    align-items: center;
    margin-right: 5px; /* Space between icon and text */
}

.contact-info img.small-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    /* Placeholder background for small icons */
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.contact-info .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5); /* Lighter separator */
}

.institute-name {
    margin-top: 15px;
    font-size: 1em;
    font-weight: bold;
}

/* Footer Section */
.poster-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-logo {
    width: 100px; /* Adjust size of logos */
    height: auto;
    filter: brightness(1.2); /* Slightly brightens logos if they are dark */
    /* Placeholder background for logos */
    background-color: rgba(255, 255, 255, 0.2);
    min-height: 50px; /* To make placeholders visible */
    object-fit: contain;
}

.footer-logo.state-logo {
    width: 130px; /* Adjust specific logo size if needed */
}
.footer-logo.tultitlan-logo {
    width: 110px;
}
.footer-logo.edomex-logo {
    width: 120px;
}