livingandloving.co.za Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://media.citizen.co.za/assets/img/citizen-icon.png" type="image/x-icon" />
<!-- InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<script type="text/javascript" async=true>
(function() {
var host = window.location.hostname;
var element = document.createElement('script');
var firstScript = document.getElementsByTagName('script')[0];
var url = 'https://cmp.inmobi.com'
.concat('/choice/', 'LHJgbPCrB8EtE', '/', host, '/choice.js?tag_version=V3');
var uspTries = 0;
var uspTriesLimit = 3;
element.async = true;
element.type = 'text/javascript';
element.src = url;
firstScript.parentNode.insertBefore(element, firstScript);
function makeStub() {
var TCF_LOCATOR_NAME = '__tcfapiLocator';
var queue = [];
var win = window;
var cmpFrame;
function addFrame() {
var doc = win.document;
var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);
if (!otherCMP) {
if (doc.body) {
var iframe = doc.createElement('iframe');
iframe.style.cssText = 'display:none';
iframe.name = TCF_LOCATOR_NAME;
doc.body.appendChild(iframe);
} else {
setTimeout(addFrame, 5);
}
}
return !otherCMP;
}
function tcfAPIHandler() {
var gdprApplies;
var args = arguments;
if (!args.length) {
return queue;
} else if (args[0] === 'setGdprApplies') {
if (
args.length > 3 &&
args[2] === 2 &&
typeof args[3] === 'boolean'
) {
gdprApplies = args[3];
if (typeof args[2] === 'function') {
args[2]('set', true);
}
}
} else if (args[0] === 'ping') {
var retr = {
gdprApplies: gdprApplies,
cmpLoaded: false,
cmpStatus: 'stub'
};
if (typeof args[2] === 'function') {
args[2](retr);
}
} else {
if(args[0] === 'init' && typeof args[3] === 'object') {
args[3] = Object.assign(args[3], { tag_version: 'V3' });
}
queue.push(args);
}
}
function postMessageEventHandler(event) {
var msgIsString = typeof event.data === 'string';
var json = {};
try {
if (msgIsString) {
json = JSON.parse(event.data);
} else {
json = event.data;
}
} catch (ignore) {}
var payload = json.__tcfapiCall;
if (payload) {
window.__tcfapi(
payload.command,
payload.version,
function(retValue, success) {
var returnMsg = {
__tcfapiReturn: {
returnValue: retValue,
success: success,
callId: payload.callId
}
};
if (msgIsString) {
returnMsg = JSON.stringify(returnMsg);
}
if (event && event.source && event.source.postMessage) {
event.source.postMessage(returnMsg, '*');
}
},
payload.parameter
);
}
}
while (win) {
try {
if (win.frames[TCF_LOCATOR_NAME]) {
cmpFrame = win;
break;
}
} catch (ignore) {}
if (win === window.top) {
break;
}
win = win.parent;
}
if (!cmpFrame) {
addFrame();
win.__tcfapi = tcfAPIHandler;
win.addEventListener('message', postMessageEventHandler, false);
}
};
makeStub();
function makeGppStub() {
const CMP_ID = 10;
const SUPPORTED_APIS = [
'2:tcfeuv2',
'6:uspv1',
'7:usnatv1',
'8:usca',
'9:usvav1',
'10:uscov1',
'11:usutv1',
'12:usctv1'
];
window.__gpp_addFrame = function (n) {
if (!window.frames[n]) {
if (document.body) {
var i = document.createElement("iframe");
i.style.cssText = "display:none";
i.name = n;
document.body.appendChild(i);
} else {
window.setTimeout(window.__gpp_addFrame, 10, n);
}
}
};
window.__gpp_stub = function () {
var b = arguments;
__gpp.queue = __gpp.queue || [];
__gpp.events = __gpp.events || [];
if (!b.length || (b.length == 1 && b[0] == "queue")) {
return __gpp.queue;
}
if (b.length == 1 && b[0] == "events") {
return __gpp.events;
}
var cmd = b[0];
var clb = b.length > 1 ? b[1] : null;
var par = b.length > 2 ? b[2] : null;
if (cmd === "ping") {
clb(
{
gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
cmpStatus: "stub", // possible values: stub, loading, loaded, error
cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
signalStatus: "not ready", // possible values: not ready, ready
supportedAPIs: SUPPORTED_APIS, // list of supported APIs
cmpId: CMP_ID, // IAB assigned CMP ID, may be 0 during stub/loading
sectionList: [],
applicableSections: [-1],
gppString: "",
parsedSections: {},
},
true
);
} else if (cmd === "addEventListener") {
if (!("lastId" in __gpp)) {
__gpp.lastId = 0;
}
__gpp.lastId++;
var lnr = __gpp.lastId;
__gpp.events.push({
id: lnr,
callback: clb,
parameter: par,
});
clb(
{
eventName: "listenerRegistered",
listenerId: lnr, // Registered ID of the listener
data: true, // positive signal
pingData: {
gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
cmpStatus: "stub", // possible values: stub, loading, loaded, error
cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
signalStatus: "not ready", // possible values: not ready, ready
supportedAPIs: SUPPORTED_APIS, // list of supported APIs
cmpId: CMP_ID, // list of supported APIs
sectionList: [],
applicableSections: [-1],
gppString: "",
parsedSections: {},
},
},
true
);
} else if (cmd === "removeEventListener") {
var success = false;
for (var i = 0; i < __gpp.events.length; i++) {
if (__gpp.events[i].id == par) {
__gpp.events.splice(i, 1);
success = true;
break;
}
}
clb(
{
eventName: "listenerRemoved",
listenerId: par, // Registered ID of the listener
data: success, // status info
pingData: {
gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
cmpStatus: "stub", // possible values: stub, loading, loaded, error
cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
signalStatus: "not ready", // possible values: not ready, ready
supportedAPIs: SUPPORTED_APIS, // list of supported APIs
cmpId: CMP_ID, // CMP ID
sectionList: [],
applicableSections: [-1],
gppString: "",
parsedSections: {},
},
},
true
);
} else if (cmd === "hasSection") {
clb(false, true);
} else if (cmd === "getSection" || cmd === "getField") {
clb(null, true);
}
//queue all other commands
else {
__gpp.queue.push([].slice.apply(b));
}
};
window.__gpp_msghandler = function (event) {
var msgIsString = typeof event.data === "string";
try {
var json = msgIsString ? JSON.parse(event.data) : event.data;
} catch (e) {
var json = null;
}
if (typeof json === "object" && json !== null && "__gppCall" in json) {
var i = json.__gppCall;
window.__gpp(
i.command,
function (retValue, success) {
var returnMsg = {
__gppReturn: {
returnValue: retValue,
success: success,
callId: i.callId,
},
};
event.source.postMessage(msgIsString ? JSON.stringify(returnMsg) : returnMsg, "*");
},
"parameter" in i ? i.parameter : null,
"version" in i ? i.version : "1.1"
);
}
};
if (!("__gpp" in window) || typeof window.__gpp !== "function") {
window.__gpp = window.__gpp_stub;
window.addEventListener("message", window.__gpp_msghandler, false);
window.__gpp_addFrame("__gppLocator");
}
};
makeGppStub();
var uspStubFunction = function() {
var arg = arguments;
if (typeof window.__uspapi !== uspStubFunction) {
setTimeout(function() {
if (typeof window.__uspapi !== 'undefined') {
window.__uspapi.apply(window.__uspapi, arg);
}
}, 500);
}
};
var checkIfUspIsReady = function() {
uspTries++;
if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
console.warn('USP is not accessible');
} else {
clearInterval(uspInterval);
}
};
if (typeof window.__uspapi === 'undefined') {
window.__uspapi = uspStubFunction;
var uspInterval = setInterval(checkIfUspIsReady, 6000);
}
})();
</script>
<!-- End InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<!-- Begin OneSignal Web Push -->
<script src="https://cdn.onesignal.com/sdks/web/v16/OneSignalSDK.page.js" defer></script> <script>
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(async function(OneSignal) {
await OneSignal.init({ appId: "e2cda81b-c368-4f94-a3dd-21c255eb42c9" });
});
</script>
<!-- End OneSignal Web Push -->
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<!-- This site is optimized with the Yoast SEO Premium plugin v25.7.1 (Yoast SEO v25.7) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Lifestyle stories, breaking news and comment | The Citizen</title>
<link crossorigin data-rocket-preconnect href="https://media.citizen.co.za" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://api.onesignal.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://connect.facebook.net" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://www.googletagmanager.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://tt.onthe.io" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://cmp.inmobi.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://cdn.onesignal.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://securepubads.g.doubleclick.net" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://fundingchoicesmessages.google.com" rel="preconnect">
<link crossorigin data-rocket-preconnect href="https://cdn.onthe.io" rel="preconnect">
<link data-rocket-preload as="style" href="https://fonts.googleapis.com/css?family=Lato%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&display=swap" rel="preload">
<link href="https://fonts.googleapis.com/css?family=Lato%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&display=swap" media="print" onload="this.media='all'" rel="stylesheet">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900%2C100i%2C200i%2C300i%2C400i%2C500i%2C600i%2C700i%2C800i%2C900i&display=swap"></noscript>
<meta name="description" content="The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food." />
<link rel="canonical" href="https://www.citizen.co.za/lifestyle/" />
<link rel="next" href="https://www.citizen.co.za/lifestyle/page/2/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Lifestyle | The Citizen" />
<meta property="og:description" content="The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food." />
<meta property="og:url" content="https://www.citizen.co.za/lifestyle/" />
<meta property="og:site_name" content="The Citizen" />
<meta property="og:image" content="https://media.citizen.co.za/wp-content/uploads/2024/04/citizen-social.jpg" />
<meta property="og:image:width" content="1500" />
<meta property="og:image:height" content="1000" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@TheCitizen_News" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"CollectionPage","@id":"https://www.citizen.co.za/lifestyle/","url":"https://www.citizen.co.za/lifestyle/","name":"Lifestyle stories, breaking news and comment | The Citizen","isPartOf":{"@id":"https://www.citizen.co.za/#website"},"primaryImageOfPage":{"@id":"https://www.citizen.co.za/lifestyle/#primaryimage"},"image":{"@id":"https://www.citizen.co.za/lifestyle/#primaryimage"},"thumbnailUrl":"https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama.jpg","description":"The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food.","breadcrumb":{"@id":"https://www.citizen.co.za/lifestyle/#breadcrumb"},"inLanguage":"en-ZA"},{"@type":"ImageObject","inLanguage":"en-ZA","@id":"https://www.citizen.co.za/lifestyle/#primaryimage","url":"https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama.jpg","contentUrl":"https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama.jpg","width":1200,"height":800,"caption":"Kabelo 'Problem Child' Koma and Thabo 'Smol' Mabogwane. Picture: realblackmotion/Instagram"},{"@type":"BreadcrumbList","@id":"https://www.citizen.co.za/lifestyle/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.citizen.co.za/"},{"@type":"ListItem","position":2,"name":"Lifestyle"}]},{"@type":"WebSite","@id":"https://www.citizen.co.za/#website","url":"https://www.citizen.co.za/","name":"The Citizen","description":"More News Your Way","publisher":{"@id":"https://www.citizen.co.za/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.citizen.co.za/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-ZA"},{"@type":"Organization","@id":"https://www.citizen.co.za/#organization","name":"The Citizen","alternateName":"The Citizen","url":"https://www.citizen.co.za/","logo":{"@type":"ImageObject","inLanguage":"en-ZA","@id":"https://www.citizen.co.za/#/schema/logo/image/","url":"https://media.citizen.co.za/wp-content/uploads/2022/07/The-Citizen-Latest-News-South-Africa-World.png","contentUrl":"https://media.citizen.co.za/wp-content/uploads/2022/07/The-Citizen-Latest-News-South-Africa-World.png","width":1881,"height":1000,"caption":"The Citizen"},"image":{"@id":"https://www.citizen.co.za/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/TheCitizenNewsSA","https://x.com/TheCitizen_News","https://www.facebook.com/citizenmotoring/","https://www.facebook.com/Citizencitilife/","https://www.facebook.com/phakaaathi/","https://www.facebook.com/citizensport/","https://en.wikipedia.org/wiki/The_Citizen_(South_African_newspaper)","https://www.youtube.com/channel/UC6W8rnMBwnzioz-3-8jH0-w","https://www.instagram.com/thecitizen_news/","https://www.tiktok.com/@thecitizen_news","https://www.whatsapp.com/channel/0029VaC6h5cGpLHZ59q2Ei2Q","https://www.linkedin.com/company/citizen/","https://flipboard.com/@TheCitizenNews"],"description":"The Citizen is a South African daily newspaper published in Johannesburg, South Africa. The newspaper is distributed nationally in South Africa. It has long been considered a newspaper of record in South Africa.","email":"online@citizen.co.za","telephone":"+27 (0)10 976 4222","legalName":"The Citizen, a division of CTP","foundingDate":"1976-08-06","vatID":"4940105440","duns":"567484720","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"501","maxValue":"1000"},"publishingPrinciples":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","ownershipFundingInfo":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","actionableFeedbackPolicy":"https://www.citizen.co.za/the-press-code-of-ethics-and-conduct-for-south-african-print-and-online-media/","correctionsPolicy":"https://www.citizen.co.za/the-press-code-of-ethics-and-conduct-for-south-african-print-and-online-media/","ethicsPolicy":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","diversityPolicy":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/","diversityStaffingReport":"https://www.citizen.co.za/disciplinary-codes-procedures-and-guidelines/"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel="alternate" type="application/rss+xml" title="The Citizen » Lifestyle Category Feed" href="https://www.citizen.co.za/lifestyle/feed/" />
<style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.citizen.co.za/wp-includes/css/dist/block-library/style.min.css?ver=6.8.2' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='create-block-videojs-style-inline-css' type='text/css'>
.wp-block-create-block-videojs{color:#fff;padding:2px}.wp-block-widget-area img{width:100%}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link data-minify="1" rel='stylesheet' id='main-css' href='https://www.citizen.co.za/wp-content/cache/min/1/wp-content/themes/citizen-2023/dist/assets/main-BvRqst0S.css?ver=1757576727' type='text/css' media='all' />
<style id='rocket-lazyload-inline-css' type='text/css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:url(https://www.citizen.co.za/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}
</style>
<script type="text/javascript" src="https://www.citizen.co.za/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" data-rocket-defer defer></script>
<script type="text/javascript" src="https://www.citizen.co.za/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<script>
document.addEventListener( "DOMContentLoaded", function() {
var div, i,
youtubePlayers = document.getElementsByClassName( "video-seo-youtube-player" );
for ( i = 0; i < youtubePlayers.length; i++ ) {
div = document.createElement( "div" );
div.className = "video-seo-youtube-embed-loader";
div.setAttribute( "data-id", youtubePlayers[ i ].dataset.id );
div.setAttribute( "tabindex", "0" );
div.setAttribute( "role", "button" );
div.setAttribute(
"aria-label", "Load YouTube video"
);
div.innerHTML = videoSEOGenerateYouTubeThumbnail( youtubePlayers[ i ].dataset.id );
div.addEventListener( "click", videoSEOGenerateYouTubeIframe );
div.addEventListener( "keydown", videoSEOYouTubeThumbnailHandleKeydown );
div.addEventListener( "keyup", videoSEOYouTubeThumbnailHandleKeyup );
youtubePlayers[ i ].appendChild( div );
}
} );
function videoSEOGenerateYouTubeThumbnail( id ) {
var thumbnail = '<picture class="video-seo-youtube-picture">\n' +
'<source class="video-seo-source-to-maybe-replace" media="(min-width: 801px)" srcset="https://i.ytimg.com/vi/' + id + '/maxresdefault.jpg" >\n' +
'<source class="video-seo-source-hq" media="(max-width: 800px)" srcset="https://i.ytimg.com/vi/' + id + '/hqdefault.jpg">\n' +
'<img onload="videoSEOMaybeReplaceMaxResSourceWithHqSource( event );" src="https://i.ytimg.com/vi/' + id + '/hqdefault.jpg" width="480" height="360" loading="eager" alt="">\n' +
'</picture>\n',
play = '<div class="video-seo-youtube-player-play"></div>';
return thumbnail.replace( "ID", id ) + play;
}
function videoSEOMaybeReplaceMaxResSourceWithHqSource( event ) {
var sourceMaxRes,
sourceHighQuality,
loadedThumbnail = event.target,
parent = loadedThumbnail.parentNode;
if ( loadedThumbnail.naturalWidth < 150 ) {
sourceMaxRes = parent.querySelector(".video-seo-source-to-maybe-replace");
sourceHighQuality = parent.querySelector(".video-seo-source-hq");
sourceMaxRes.srcset = sourceHighQuality.srcset;
parent.className = "video-seo-youtube-picture video-seo-youtube-picture-replaced-srcset";
}
}
function videoSEOYouTubeThumbnailHandleKeydown( event ) {
if ( event.keyCode !== 13 && event.keyCode !== 32 ) {
return;
}
if ( event.keyCode === 13 ) {
videoSEOGenerateYouTubeIframe( event );
}
if ( event.keyCode === 32 ) {
event.preventDefault();
}
}
function videoSEOYouTubeThumbnailHandleKeyup( event ) {
if ( event.keyCode !== 32 ) {
return;
}
videoSEOGenerateYouTubeIframe( event );
}
function videoSEOGenerateYouTubeIframe( event ) {
var el = ( event.type === "click" ) ? this : event.target,
iframe = document.createElement( "iframe" );
iframe.setAttribute( "src", "https://www.youtube.com/embed/" + el.dataset.id + "?autoplay=1&enablejsapi=1&origin=https%3A%2F%2Fwww.citizen.co.za" );
iframe.setAttribute( "frameborder", "0" );
iframe.setAttribute( "allowfullscreen", "1" );
iframe.setAttribute( "allow", "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" );
el.parentNode.replaceChild( iframe, el );
}
</script>
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script id="googletag-advert-loader">
let slots = {}
googletag = window.googletag || {};
googletag.cmd = googletag.cmd || [];
googletag.cmd.push(function() {
let desktop = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[728, 90]])
.addSize([972, 100], [[728, 90], [970, 90]])
.addSize([1200, 100], [[728, 90], [970, 90]])
.build();
let desktop_skyscraper = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[728, 90]])
.addSize([972, 100], [[160, 600]])
.addSize([1200, 100], [[160, 600]])
.build();
let desktop_small = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[300, 250], [300, 600]])
.addSize([972, 100], [[300, 250], [300, 600]])
.addSize([1200, 100], [[300, 250], [300, 600]])
.build();
let desktop_small_limited = googletag.sizeMapping()
.addSize([320, 100], [])
.addSize([480, 100], [])
.addSize([640, 100], [])
.addSize([730, 100], [[300, 250]])
.addSize([972, 100], [[300, 250]])
.addSize([1200, 100], [[300, 250]])
.build();
let mobile_single = googletag.sizeMapping()
.addSize([320, 100], [[300, 250], [336, 280]])
.addSize([480, 100], [[300, 250], [336, 280]])
.addSize([640, 100], [[300, 250], [336, 280]])
.addSize([730, 100], [])
.addSize([972, 100], [])
.addSize([1200, 100], [])
.build();
let mobile_sticky = googletag.sizeMapping()
.addSize([320, 100], [[320,50]])
.addSize([480, 100], [[320,50]])
.addSize([640, 100], [[320,50]])
.addSize([730, 100], [])
.addSize([972, 100], [])
.addSize([1200, 100], [])
.build();
let mobile_multi = googletag.sizeMapping()
.addSize([320, 100], [[320,480], [300, 250], [300, 600], [336, 280]])
.addSize([480, 100], [[320,480], [300, 250], [300, 600], [336, 280]])
.addSize([640, 100], [[320,480], [300, 250], [300, 600], [336, 280]])
.addSize([730, 100], [])
.addSize([972, 100], [])
.addSize([1200, 100], [])
.build();
slots['google-ad-d-leader'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-leader", [[728,90], [970,90]],"google-ad-d-leader").defineSizeMapping(desktop).addService(googletag.pubads());
slots['google-ad-d-mpu1'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu1", [[300,250], [300,600]],"google-ad-d-mpu1").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu2'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu2", [[300,250], [300,600]],"google-ad-d-mpu2").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu3'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu3", [[300,250], [300,600]],"google-ad-d-mpu3").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu4'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu4", [[300,250], [300,600]],"google-ad-d-mpu4").defineSizeMapping(desktop_small).addService(googletag.pubads());
slots['google-ad-d-mpu-incontent'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-mpu-incontent", [[300,250], "fluid"],"google-ad-d-mpu-incontent").defineSizeMapping(desktop_small_limited).addService(googletag.pubads());
slots['google-ad-d-sky-1'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-sky-1", [[160,600]],"google-ad-d-sky-1").defineSizeMapping(desktop_skyscraper).addService(googletag.pubads());
slots['google-ad-d-sky-2'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-desktop/d-sky-2", [[160,600]],"google-ad-d-sky-2").defineSizeMapping(desktop_skyscraper).addService(googletag.pubads());
slots['google-ad-m-og-mpu1'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu1", [[300,250], [336,280], "fluid"],"google-ad-m-og-mpu1").defineSizeMapping(mobile_single).addService(googletag.pubads());
slots['google-ad-m-og-mpu2'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu2", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu2").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu3'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu3", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu3").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu4'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu4", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu4").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu5'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu5", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu5").defineSizeMapping(mobile_multi).addService(googletag.pubads());
slots['google-ad-m-og-mpu6'] = googletag.defineSlot("/22707993172/citizen-co-za/ct-mob-og/m-og-mpu6", [[300,250], [300,600], [320,480], [336,280], "fluid"],"google-ad-m-og-mpu6").defineSizeMapping(mobile_multi).addService(googletag.pubads());
googletag.defineOutOfPageSlot("/22707993172/citizen-co-za/ct-desktop/d-oop","google-ad-d-oop").addService(googletag.pubads());
slots['ct-anchor'] = googletag.defineOutOfPageSlot("/22707993172/citizen-co-za/ct-anchor", googletag.enums.OutOfPageFormat.BOTTOM_ANCHOR);
if(slots['ct-anchor']){
slots['ct-anchor'].addService(googletag.pubads());
}
slots['interstitial'] = googletag.defineOutOfPageSlot("/22707993172/premium-inventory/interstitial", googletag.enums.OutOfPageFormat.INTERSTITIAL);
if(slots['interstitial']){
slots['interstitial'].addService(googletag.pubads());
}
googletag.pubads().enableSingleRequest();
googletag.pubads().collapseEmptyDivs();
googletag.pubads().setTargeting('ct-category', 'lifestyle,c-lifestyle');
googletag.pubads().setTargeting('ct-tag', '');
googletag.pubads().setTargeting('ct-article-id', '');
googletag.pubads().enableLazyLoad({
fetchMarginPercent: 100, // Fetch slots within 1 viewports.
renderMarginPercent: 50, // Render slots within 0.5 viewports.
mobileScaling: 2.0 // Double the above values on mobile.
});
googletag.enableServices();
});
</script>
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-N6K7RKV');
</script><noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript>
<link rel="preload"
as="image"
href="https://media.citizen.co.za/assets/img/citizen.png"
imagesrcset=""
id="preloaded-image-0-0">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama.jpg 1200w"
id="preloaded-image-4154171-4154192">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala.jpg 1200w"
id="preloaded-image-4154086-4154105">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango.jpg 1200w"
id="preloaded-image-4153894-4153936">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards.jpg 1500w"
id="preloaded-image-4153918-4153951">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025-.jpg 1200w"
id="preloaded-image-4153722-4153747">
<link rel="preload"
as="image"
href="https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-825x550.jpg"
imagesrcset="https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk.jpg 1200w"
id="preloaded-image-4153318-4153355">
<style id="rocket-lazyrender-inline-css">[data-wpr-lazyrender] {content-visibility: auto;}</style></head>
<body class="archive category category-lifestyle category-117 wp-theme-citizen-2023">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N6K7RKV" height="0" width="0" style="display:none;visibility:hidden">
</iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="flex flex-col min-h-screen">
<div class="adunit-top">
<div
id="google-ad-d-leader-to-close"
class="text-center text-center mt-3 mb-3 ">
<div id="google-ad-d-leader">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-leader');
});
</script>
</div>
</div>
</div>
<header class="main-header">
<div class="grid grid-cols-5 md:grid-cols-3 h-full">
<div class="header-brands">
<a class="citizen-icon" data-type="icon" data-brand="citizen" href="/">
<img class="icon" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo Icon in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/citizen-icon.png" /><noscript><img class="icon" src="https://media.citizen.co.za/assets/img/citizen-icon.png" alt="Citizen logo Icon in header - left" /></noscript>
</a>
<a class="citizen-logo" data-type="logo" data-brand="citizen" href="/">
<img class="logo" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/citizen.png" /><noscript><img class="logo" src="https://media.citizen.co.za/assets/img/citizen.png" alt="Citizen logo in header - left" /></noscript>
</a>
<a class="phakaaathi-icon" data-type="icon" data-brand="phakaaathi" href="/phakaaathi">
<img class="icon" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Phakaaathi logo icon in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/phakaaathi-icon.png" /><noscript><img class="icon" src="https://media.citizen.co.za/assets/img/phakaaathi-icon.png" alt="Phakaaathi logo icon in header - left" /></noscript>
</a>
<a class="phakaaathi-logo" data-type="logo" data-brand="phakaaathi" href="/phakaaathi">
<img class="logo" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Phakaaathi logo in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/phakaaathi-logo.png" /><noscript><img class="logo" src="https://media.citizen.co.za/assets/img/phakaaathi-logo.png" alt="Phakaaathi logo in header - left" /></noscript>
</a>
<a class="local-news-icon" data-type="icon" data-brand="local-news" href="/local-newspapers">
<img class="icon" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Caxton logo icon in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/caxton-local-news-icon.png" /><noscript><img class="icon" src="https://media.citizen.co.za/assets/img/caxton-local-news-icon.png" alt="Caxton logo icon in header - left" /></noscript>
</a>
<a class="local-news-logo" data-type="logo" data-brand="local-news" href="/local-newspapers">
<img class="logo" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Caxton logo in header - left" data-lazy-src="https://media.citizen.co.za/assets/img/caxton-local-news-wider.png" /><noscript><img class="logo" src="https://media.citizen.co.za/assets/img/caxton-local-news-wider.png" alt="Caxton logo in header - left" /></noscript>
</a>
</div>
<div class="header-menu">
<button type="button" class="navbar-toggle" data-control="open">
<span class="navbar-toggle-icon">
<i class="citizenicons-bars"></i>
</span>
</button>
<div class="backdrop backdrop-blur">
<div class="mobile-menu-wrapper">
<div class="mobile-menu-header">
<img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo on mobile menu" data-lazy-src="https://media.citizen.co.za/assets/img/citizen.png" /><noscript><img src="https://media.citizen.co.za/assets/img/citizen.png" alt="Citizen logo on mobile menu" /></noscript>
<button type="button" class="navbar-toggle" data-control="close">
<span class="navbar-toggle-icon">
<i class="citizenicons-bars"></i>
</span>
</button>
</div>
<div class="mobile-menu-content">
<form
role="search"
method="get"
class="search-form"
action="https://www.citizen.co.za/"
>
<input
type="search"
class="search-field"
placeholder="Search …"
value=""
name="s"
/>
<button type="submit" class="search-submit">
<i class="citizenicons-magnifying-glass"></i>
</button>
</form>
<nav id="mobile-menu">
<div class="menu-mobile-navigation-container"><ul id="menu-mobile-navigation" class="menu"><li id="menu-item-2464251" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464251"><a href="https://www.citizen.co.za/news/">News</a></li>
<li id="menu-item-3409931" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3409931"><a href="https://thecitizen.pressreader.com/the-citizen-gauteng">E-Paper</a></li>
<li id="menu-item-3963563" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3963563"><a href="https://www.citizen.co.za/lotto/">Lotto</a></li>
<li id="menu-item-2464259" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464259"><a href="https://www.citizen.co.za/business/">Business</a></li>
<li id="menu-item-2464264" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464264"><a href="https://www.citizen.co.za/sport/">Sport</a></li>
<li id="menu-item-2464272" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464272"><a href="https://www.citizen.co.za/sport/soccer/">Phakaaathi</a></li>
<li id="menu-item-2464277" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-2464277"><a href="https://www.citizen.co.za/lifestyle/" aria-current="page">Lifestyle</a></li>
<li id="menu-item-2464286" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464286"><a href="https://www.citizen.co.za/entertainment/">Entertainment</a></li>
<li id="menu-item-2464295" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464295"><a href="https://www.citizen.co.za/motoring/">Motoring</a></li>
<li id="menu-item-3531545" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3531545"><a href="https://www.citizen.co.za/auctions/">Auctions</a></li>
<li id="menu-item-2464310" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464310"><a href="https://www.citizen.co.za/multimedia/">Multimedia</a></li>
<li id="menu-item-3217086" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3217086"><a href="https://www.citizen.co.za/local-newspapers/">Local News</a></li>
<li id="menu-item-4136364" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4136364"><a href="https://www.citizen.co.za/contact-us/">Contact us</a></li>
<li id="menu-item-3964295" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3964295"><a href="https://www.citizen.co.za/legal-notice/">Legal Notices</a></li>
<li id="menu-item-4095661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4095661"><a href="https://www.citizen.co.za/job-listing/">Jobs</a></li>
<li id="menu-item-3767189" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3767189"><a href="https://www.citizen.co.za/best-bets/">Betway Best Bets</a></li>
<li id="menu-item-3644259" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3644259"><a href="https://www.citizen.co.za/competitions/">Competitions</a></li>
<li id="menu-item-3807721" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3807721"><a href="https://premium.citizen.co.za/">E-Paper Subscriptions</a></li>
<li id="menu-item-3807732" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3807732"><a href="https://www.citizen.co.za/sign-in/">My Account</a></li>
<li id="menu-item-3966851" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3966851"><a href="https://www.citizen.co.za/newsletter-subscription/">Newsletters</a></li>
</ul></div> </nav>
</div>
</div>
</div>
</div>
<div class="header-logo col-span-2 md:col-span-1">
<a href="/">
<img class="non-print-logo w-40 sm:w-48 md:w-52" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in header - center" data-lazy-src="https://media.citizen.co.za/assets/img/citizen.png" /><noscript><img class="non-print-logo w-40 sm:w-48 md:w-52" src="https://media.citizen.co.za/assets/img/citizen.png" alt="Citizen logo in header - center" /></noscript>
<img class="hidden print-logo w-40 sm:w-48 md:w-52" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in header - center" data-lazy-src="https://media.citizen.co.za/assets/img/citizen-logo.png" /><noscript><img class="hidden print-logo w-40 sm:w-48 md:w-52" src="https://media.citizen.co.za/assets/img/citizen-logo.png" alt="Citizen logo in header - center" /></noscript>
</a>
</div>
<div class="header-extra-mobile col-span-2 md:col-span-1">
<div class="header-search-mobile navigation-search">
<i class="citizenicons-magnifying-glass"></i>
</div>
<div class="header-chery-comp-mobile">
<a href="https://premium.citizen.co.za/" data-google-interstitial="false"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" class="w-[93px] h-[34px]" data-lazy-src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-93x34.png"><noscript><img src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-93x34.png" class="w-[93px] h-[34px]"></noscript></a>
</div>
<div class="header-account-mobile">
<button type="button" class="account-icon citizenicons-lock">
<i></i>
</button>
<div class="mobile-account-wrapper">
<ul class="mobile-account-menu">
<li><a href="https://thecitizen.pressreader.com/the-citizen-gauteng" data-google-interstitial="false">E-Paper</a></li>
<li><a href="/sign-in/" data-google-interstitial="false">My Account</a></li>
<li><a href="https://premium.citizen.co.za/" data-google-interstitial="false">Subscribe</a></li>
</ul>
</div>
</div>
</div>
<div class="header-account">
<a href="https://thecitizen.pressreader.com/the-citizen-gauteng" class="btn" data-google-interstitial="false">E-Paper</a>
<a href="/sign-in" class="btn btn-sign-in" data-google-interstitial="false">My Account</a>
<a href="https://premium.citizen.co.za/" class="cta-subscribe" data-google-interstitial="false"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" class="w-[109px] h-[40px]" data-lazy-src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-109x40.png"><noscript><img src="https://media.citizen.co.za/assets/img/chery-comp/subscribe-cta-109x40.png" class="w-[109px] h-[40px]"></noscript></a>
</div>
</div>
</header>
<nav id="main-navigation">
<div class="main-navigation-inner">
<div class="menu-main-navigation-container"><ul id="menu-main-navigation" class="menu"><li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-news'><a href="https://www.citizen.co.za/news/">News</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-south-africa'><a href="https://www.citizen.co.za/news/south-africa/">South Africa</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-education'><a href="https://www.citizen.co.za/news/south-africa/education/">Education</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-news-africa'><a href="https://www.citizen.co.za/news/news-world/news-africa/">Africa</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-news-world'><a href="https://www.citizen.co.za/news/news-world/">World</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-lotto'><a href="https://www.citizen.co.za/lotto/">Lotto</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-opinion'><a href="https://www.citizen.co.za/news/opinion/">Opinion</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://thecitizen.pressreader.com/the-citizen-gauteng">E-Paper</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-business'><a href="https://www.citizen.co.za/business/">Business</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-personal-finance'><a href="https://www.citizen.co.za/business/personal-finance/">Personal Finance</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-sport'><a href="https://www.citizen.co.za/sport/">Sport</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-cricket'><a href="https://www.citizen.co.za/sport/cricket/">Cricket</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-soccer'><a href="https://www.citizen.co.za/sport/soccer/">Soccer</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-rugby'><a href="https://www.citizen.co.za/sport/rugby/">Rugby</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-horses'><a href="https://www.citizen.co.za/sport/horses/">Horses</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-best-bets'><a href="https://www.citizen.co.za/best-bets/">Betway Best Bets</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children category-soccer'><a href="https://www.citizen.co.za/sport/soccer/">Phakaaathi</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-local-soccer'><a href="https://www.citizen.co.za/sport/soccer/local-soccer/">Betway PSL</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-mgosi'><a href="https://www.citizen.co.za/sport/soccer/local-soccer/mgosi/">Mgosi</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-world-soccer'><a href="https://www.citizen.co.za/sport/soccer/world-soccer/">World Soccer</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-has-children category-lifestyle'><a href="https://www.citizen.co.za/lifestyle/">Lifestyle</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-entertainment'><a href="https://www.citizen.co.za/entertainment/">Entertainment</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-celebrity-news'><a href="https://www.citizen.co.za/entertainment/celebrity-news/">Celebs And Viral</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-tv'><a href="https://www.citizen.co.za/entertainment/tv/">TV</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-food-and-drink'><a href="https://www.citizen.co.za/lifestyle/food-and-drink/">Food And Drink</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-health'><a href="https://www.citizen.co.za/lifestyle/health/">Health</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-fashion-and-beauty'><a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/">Fashion And Beauty</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-technology'><a href="https://www.citizen.co.za/lifestyle/technology/">Tech and Science</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-travel'><a href="https://www.citizen.co.za/travel/">Travel</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-motoring'><a href="https://www.citizen.co.za/motoring/">Motoring</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-multimedia'><a href="https://www.citizen.co.za/multimedia/">Multimedia</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children category-none'><a href="https://www.citizen.co.za/local-newspapers/">Local News</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/">Free State</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/">Gauteng</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#garden-route">Garden Route</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#kwazulu-natal">KwaZulu-Natal</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#mpumalanga">Mpumalanga</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#limpopo">Limpopo</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#northern-cape">Northern Cape</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#north-west">North West</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/local-newspapers/#national">National</a></li>
</ul>
</li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/legal-notice/">Legal Notices</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/job-listing/">Jobs</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children category-none'><a href="#">More</a>
<ul class="sub-menu">
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-auctions'><a href="https://www.citizen.co.za/auctions/">Auctions</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-best-bets'><a href="https://www.citizen.co.za/best-bets/">Betway Best Bets</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/newsletter-subscription/">Newsletters</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-competitions'><a href="https://www.citizen.co.za/competitions/">Competitions</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/about-us/">About</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/authors/">Our team</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/advertising/">Advertise with us</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/jobs-at-the-citizen/">Jobs at The Citizen</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/contact-us/">Contact us</a></li>
</ul>
</li>
<li class='navigation-search menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="#"><i class="citizenicons-magnifying-glass"></i></a></li>
</ul></div><div class="menu-mobile-scroll-container"><ul id="menu-mobile-scroll" class="menu"><li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-news'><a href="https://www.citizen.co.za/news/">News</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://thecitizen.pressreader.com/the-citizen-gauteng">E-Paper</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-lotto'><a href="https://www.citizen.co.za/lotto/">Lotto</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-business'><a href="https://www.citizen.co.za/business/">Business</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-sport'><a href="https://www.citizen.co.za/sport/">Sport</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-soccer'><a href="https://www.citizen.co.za/sport/soccer/">Phakaaathi</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item category-lifestyle'><a href="https://www.citizen.co.za/lifestyle/">Lifestyle</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-entertainment'><a href="https://www.citizen.co.za/entertainment/">Entertainment</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-motoring'><a href="https://www.citizen.co.za/motoring/">Motoring</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-multimedia'><a href="https://www.citizen.co.za/multimedia/">Multimedia</a></li>
<li class=' menu-item menu-item-type-post_type menu-item-object-page category-none'><a href="https://www.citizen.co.za/local-newspapers/">Local News</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/legal-notice/">Legal Notices</a></li>
<li class=' menu-item menu-item-type-custom menu-item-object-custom category-none'><a href="https://www.citizen.co.za/job-listing/">Jobs</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-auctions'><a href="https://www.citizen.co.za/auctions/">Auctions</a></li>
<li class=' menu-item menu-item-type-taxonomy menu-item-object-category category-competitions'><a href="https://www.citizen.co.za/competitions/">Competitions</a></li>
</ul></div>
<form
role="search"
method="get"
class="search-form"
action="https://www.citizen.co.za/"
>
<input
type="search"
class="search-field"
placeholder="Search …"
value=""
name="s"
/>
<button type="submit" class="search-submit">
<i class="citizenicons-magnifying-glass"></i>
</button>
</form>
</div>
</nav>
<main class="flex-auto">
<div class="main-content relative max-w-[990px] mx-auto sm:px-6 lg:px-1 py-2 md:py-4">
<div class="skyscraper-left">
<div class="skyscraper-left-inner">
<div
id="google-ad-d-sky-1-to-close"
class="text-center ">
<div id="google-ad-d-sky-1">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-sky-1');
});
</script>
</div>
</div>
</div>
</div>
<div class="skyscraper-right">
<div class="skyscraper-right-inner">
<div
id="google-ad-d-sky-2-to-close"
class="text-center ">
<div id="google-ad-d-sky-2">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-sky-2');
});
</script>
</div>
</div>
</div>
</div>
<div class="category-lead-one-wrapper">
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-4">
<div class="">
<div class="category-sidebar bg-category-lifestyle">
<h1 class="widgettitle">Lifestyle</h1><div class="menu-lifestyle-category-menu-container"><ul id="menu-lifestyle-category-menu" class="menu"><li id="menu-item-2464201" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464201"><a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/">Fashion And Beauty</a></li>
<li id="menu-item-3122655" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3122655"><a href="https://www.citizen.co.za/lifestyle/health/">Health</a></li>
<li id="menu-item-2464196" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464196"><a href="https://www.citizen.co.za/lifestyle/food-and-drink/">Food And Drink</a></li>
<li id="menu-item-3268208" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3268208"><a href="https://www.citizen.co.za/lifestyle/technology/">Tech and Science</a></li>
<li id="menu-item-3531534" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3531534"><a href="https://www.citizen.co.za/travel/">Travel</a></li>
</ul></div> </div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 md:col-span-3">
<div class="grid grid-cols-1 gap-4">
<div class="">
<div class="card">
<article class="layout-hero" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/black-motion-on-their-sama-nominations-and-performing-at-the-safari-this-weekend/" target="_self">
<img width="825" height="550" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20825%20550'%3E%3C/svg%3E" class="attachment-article-image size-article-image wp-post-image" alt="Black Motion" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama.jpg 1200w" data-lazy-sizes="(max-width: 825px) 100vw, 825px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-825x550.jpg" /><noscript><img width="825" height="550" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-825x550.jpg" class="attachment-article-image size-article-image wp-post-image" alt="Black Motion" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Black-Motion-Sama.jpg 1200w" sizes="(max-width: 825px) 100vw, 825px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/black-motion-on-their-sama-nominations-and-performing-at-the-safari-this-weekend/" target="_self">
Black Motion on their Sama nominations and performing at the safari this weekend </a>
</h2>
</div>
<footer>
10 hours ago </footer>
</article>
</div>
</div>
</div>
<div class="grid grid-cols-1 gap-4">
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/sa-africa-never-recognised-what-he-has-done-lebo-m-ladysmith-black-mambazo-founder/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Lebo M and Joseph Shabalala" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Lebo M and Joseph Shabalala" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lebo-M-Joseph-Shabalala.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/sa-africa-never-recognised-what-he-has-done-lebo-m-ladysmith-black-mambazo-founder/" target="_self">
‘SA and Africa have never recognised what he has done for the industry’ – Lebo M on Ladysmith Black Mambazo founder </a>
</h2>
</div>
<footer>
11 hours ago </footer>
</div>
</article>
</div>
</div>
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/we-are-creating-a-stage-for-an-african-child-says-former-muvhango-actress-after-co-founding-film-school/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Maumela Mahuwa" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Maumela Mahuwa" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Maumela-Mahuwa-Life-after-Muvhango.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/we-are-creating-a-stage-for-an-african-child-says-former-muvhango-actress-after-co-founding-film-school/" target="_self">
‘We are creating a stage for an African child’ says former Muvhango actress after co-founding film school </a>
</h2>
</div>
<footer>
13 hours ago </footer>
</div>
</article>
</div>
</div>
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/carol-ofori-scores-two-nominations-at-the-2025-south-african-voice-over-awards/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Carol Ofori" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Carol Ofori" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/carol-ofori-voiceover-awards.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/carol-ofori-scores-two-nominations-at-the-2025-south-african-voice-over-awards/" target="_self">
Carol Ofori scores two nominations at the 2025 South African Voice-Over Awards </a>
</h2>
</div>
<footer>
13 hours ago </footer>
</div>
</article>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 md:col-span-2 gap-4">
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/miss-sa-top-10-finalist-bridgette-jones-denies-bullying-allegations/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Bridgette Jones" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025-.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Bridgette Jones" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025--825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Bridgette-Jones-miss-sa-2025-.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/" class="text-category-fashion-and-beauty bg-category-fashion-and-beauty md:bg-transparent">
Fashion And Beauty </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/miss-sa-top-10-finalist-bridgette-jones-denies-bullying-allegations/" target="_self">
Miss SA Top 10 finalist Bridgette Jones denies bullying allegations </a>
</h2>
</div>
<footer>
14 hours ago </footer>
</div>
</article>
</div>
</div>
<div class="">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/sizwe-dhlomo-after-the-kiffness-claims-campaign-loss-over-charlie-kirk-defence/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Sizwe Dhlomo and The Kiffness" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Sizwe Dhlomo and The Kiffness" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/the-kiffness-charlie-kirk.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/sizwe-dhlomo-after-the-kiffness-claims-campaign-loss-over-charlie-kirk-defence/" target="_self">
‘Who was dumb enough to pay you R500k?’ – Sizwe Dhlomo on The Kiffness losing campaign over Charlie Kirk defence </a>
</h2>
</div>
<footer>
19 hours ago </footer>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="category-lead-two-wrapper">
<div class="grid grid-cols-1 md:grid-cols-3 md:gap-4 mb-4">
<div class="order-2 md:order-1 p-2 md:p-0">
<div class="editors-choice desktop">
<h3>EDITOR'S CHOICE</h3>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/madlanga-commission-mkhwanazi-testimony-kohler-barnard/" target="_self">
Bombshell at Madlanga commission: Mkhwanazi accuses DA MP of breaking the law </a>
</span>
</div>
<div class="post">
<span
class="category text-category-news"
>
<a href="https://www.citizen.co.za/news/">
News </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/just-in-gauteng-taxi-assocation-chair-assassinated-near-soweto/" target="_self">
Gauteng taxi association chair ‘assassinated’ near Soweto </a>
</span>
</div>
<div class="post">
<span
class="category text-category-politics"
>
<a href="https://www.citizen.co.za/news/south-africa/politics/">
Politics </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/south-africa/politics/zille-takes-the-battle-for-the-soul-of-johannesburg-to-soweto/" target="_self">
Zille makes her move in Joburg </a>
</span>
</div>
<div class="post">
<span
class="category text-category-politics"
>
<a href="https://www.citizen.co.za/news/south-africa/politics/">
Politics </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/news/south-africa/politics/will-dada-sail-through-parliaments-probe-into-joburgs-water-crisis/" target="_self">
Embarrassing for Joburg mayor Dada Morero to have to appear in parliament over water crisis </a>
</span>
</div>
<div class="post">
<span
class="category text-category-celebrity-news"
>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/">
Celebs And Viral </a>
</span>
<span class="title">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/sizwe-dhlomo-after-the-kiffness-claims-campaign-loss-over-charlie-kirk-defence/" target="_self">
‘Who was dumb enough to pay you R500k?’ – Sizwe Dhlomo on The Kiffness losing campaign over Charlie Kirk defence </a>
</span>
</div>
</div>
<div
id="google-ad-d-mpu1-to-close"
class="text-center mb-3 ">
<div id="google-ad-d-mpu1">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-mpu1');
});
</script>
</div>
</div>
<div class="more-news-ad">
<div class="ad-description">
<p>Download our app</p>
</div>
<div class="ad-button">
<a href="https://apps.apple.com/za/app/the-citizen-news/id1276577286" target="_blank">
<img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="App Store badge" data-lazy-src="https://media.citizen.co.za/assets/img/app-store-badge.png" /><noscript><img decoding="async" src="https://media.citizen.co.za/assets/img/app-store-badge.png" alt="App Store badge" /></noscript>
</a>
<a href="https://play.google.com/store/apps/details?id=com.marfeel.cherokee.index.citizen.co.za&hl=en" target="_blank">
<img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Google Play Store badge" data-lazy-src="https://media.citizen.co.za/assets/img/google-play-badge.png" /><noscript><img decoding="async" src="https://media.citizen.co.za/assets/img/google-play-badge.png" alt="Google Play Store badge" /></noscript>
</a>
</div>
</div>
<div class="whatsapp-ad">
<a class="whatsapp-widget" href="https://whatsapp.com/channel/0029VaC6h5cGpLHZ59q2Ei2Q" target="_blank">
<div class="widget-content">
<i class="citizenicons-whatsapp"></i>
<p class="ad-text">
Get the latest news and updates on Whatsapp </p>
</div>
<i class="citizenicons-chevron-right"></i>
</a>
</div>
<div class="newsletter-subscription-cta-wrapper">
<a class="newsletter-widget" href="/newsletter-subscription/">
<div class="widget-content">
<i class="citizenicons-envelope"></i>
<p class="ad-text">The latest news directly in your inbox</p>
</div>
<i class="citizenicons-chevron-right"></i>
</a>
</div>
<div
id="google-ad-d-mpu2-to-close"
class="text-center mb-3 ">
<div id="google-ad-d-mpu2">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-d-mpu2');
});
</script>
</div>
</div>
</div>
<div class="col-span-2 order-1 md:order-2">
<div class="category-lead-2-before-posts-wrapper">
<div
id="google-ad-m-og-mpu1-to-close"
class="text-center mb-3 ">
<div id="google-ad-m-og-mpu1">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-m-og-mpu1');
});
</script>
</div>
</div>
</div>
<div class="category-description">
<h3 class="text-category-lifestyle">KEEP UP WITH ALL THE LATEST LIFESTYLE NEWS</h3>
The Citizen’s lifestyle section covers a wide range of lifestyle topics and issues from South African and global celebrity news to fashion and food. </div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-frozen-rose-cocktail/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="froze cocktail" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="froze cocktail" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/SSR-froze-cocktail-recipe.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/" class="bg-category-recipes">
Recipes </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-frozen-rose-cocktail/" target="_self">
Recipe of the day: Frozen rosé cocktail </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/get-to-know-the-miss-sa-2025-top-10-from-doctors-and-cas-to-flight-attendants-pics/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Miss SA" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Miss SA" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/miss-sa-top-10-2025.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/" class="bg-category-fashion-and-beauty">
Fashion And Beauty </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/get-to-know-the-miss-sa-2025-top-10-from-doctors-and-cas-to-flight-attendants-pics/" target="_self">
Get to know the Miss SA 2025 Top 10: From doctors and CAs to flight attendants [PICS] </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/jesse-clegg-and-msaki-to-drop-first-single-from-joint-project-featuring-sjava/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Jesse Clegg" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Jesse Clegg" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/jesse-clegg-msaki-sjava-new-song.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/jesse-clegg-and-msaki-to-drop-first-single-from-joint-project-featuring-sjava/" target="_self">
Jesse Clegg and Msaki to drop first single from joint project featuring Sjava </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/springbok-wag-layla-kolbe-receiving-a-mouldy-delivery/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Layla Kolbe" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Layla Kolbe" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/layla-kolbe-instagram-rant.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="bg-category-celebrity-news">
Celebs And Viral </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/springbok-wag-layla-kolbe-receiving-a-mouldy-delivery/" target="_self">
‘I’m tired of the curse that’s on me’: Springbok WAG Layla Kolbe after receiving a mouldy delivery </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/tv/lebohang-lephatsoana-tumelo-drug-struggles-youngins/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Young woman with short hair and earrings in front of green foliage, outdoors." onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Young woman with short hair and earrings in front of green foliage, outdoors." onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/tumelo-youngins-showmax-new-season.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/tv/" class="bg-category-tv">
TV </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/tv/lebohang-lephatsoana-tumelo-drug-struggles-youngins/" target="_self">
‘It took a real toll on me’: Lebohang Lephatsoana on portraying Tumelo’s drug struggles in ‘Youngins’ </a>
</h2>
</div>
<footer>
1 day ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/mpho-molepo-using-performance-art-to-fight-bullying-in-schools/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Mpho Molepo" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Mpho Molepo" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mpho-Molepo-Bullying.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/mpho-molepo-using-performance-art-to-fight-bullying-in-schools/" target="_self">
Mpho Molepo using performance art to fight bullying in schools </a>
</h2>
</div>
<footer>
2 days ago </footer>
</article>
</div>
</div>
<div
id="google-ad-m-og-mpu2-to-close"
class="text-center mb-3 ">
<div id="google-ad-m-og-mpu2">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-m-og-mpu2');
});
</script>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/sabelo-gumede-on-fighting-cancer-people-checking-on-me-every-day-makes-me-think-that-im-gonna-beat-this-thing/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Sabelo Gumede" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Sabelo Gumede" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Sabelo-Cancer-fight.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/sabelo-gumede-on-fighting-cancer-people-checking-on-me-every-day-makes-me-think-that-im-gonna-beat-this-thing/" target="_self">
Sabelo Gumede on fighting cancer: ‘People checking on me every day makes me think that I’m gonna beat this thing’ </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/tv/mixed-reactions-pearl-thusi-thabo-bester-encounter-netflix-documentary/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Pearl Thusi" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Pearl Thusi" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Pearl-Thusi-neflix-documentary-thabo-bester.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/tv/" class="text-category-tv bg-category-tv md:bg-transparent">
TV </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/tv/mixed-reactions-pearl-thusi-thabo-bester-encounter-netflix-documentary/" target="_self">
‘Her story makes zero sense’: Mixed reactions as Pearl Thusi describes Thabo Bester encounter </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/gen-z-vs-50s-wives/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="housewife" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="housewife" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-1013907060-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/gen-z-vs-50s-wives/" target="_self">
Gen Z vs ’50s and ’60s wives: no thanks, darling </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-cucumber-avo-and-dill-salad/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Avo Cucumber salad recipe" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Avo Cucumber salad recipe" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/AvoCucumber1-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/" class="text-category-recipes bg-category-recipes md:bg-transparent">
Recipes </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-cucumber-avo-and-dill-salad/" target="_self">
Recipe of the day: Cucumber, avo and dill salad </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/labubu-dolls-status-symbols-available-south-africa/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Labubu dolls South Africa" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-300x200.png 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-1200x800.png 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-768x512.png 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-456x304.png 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-825x550.png 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom.png 1536w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-300x200.png" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-300x200.png" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Labubu dolls South Africa" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-300x200.png 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-1200x800.png 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-768x512.png 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-456x304.png 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom-825x550.png 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Labubus-On-The-Prom.png 1536w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/labubu-dolls-status-symbols-available-south-africa/" target="_self">
Labubu dolls have become status symbols – and are now available in South Africa </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/shaka-ilembe-star-luyanda-zuma-among-miss-sa-2025-top-10-meet-the-contestants-and-judges-pics/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Luyanda Zuma" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Luyanda Zuma" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/MISS-SA-TOP-TEN-LIYANDA-ZUMA.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/" class="text-category-fashion-and-beauty bg-category-fashion-and-beauty md:bg-transparent">
Fashion And Beauty </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/fashion-and-beauty/shaka-ilembe-star-luyanda-zuma-among-miss-sa-2025-top-10-meet-the-contestants-and-judges-pics/" target="_self">
‘Shaka iLembe’ star Luyanda Zuma among Miss SA 2025 Top 10: Meet the finalists and judges [PICS] </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/lauryn-hill-salute-to-my-beloved-son-zion-marley-ahead-of-dstv-delicious-festival-performance/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Zion Marley and Lauryn Hill" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Zion Marley and Lauryn Hill" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Lauryn-Hill-Delicious-Festival.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/lauryn-hill-salute-to-my-beloved-son-zion-marley-ahead-of-dstv-delicious-festival-performance/" target="_self">
Lauryn Hill: ‘Salute to my beloved son, Zion Marley’ ahead of DStv Delicious Festival performance </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/relebogile-mabotja-marks-40th-birthday-with-debut-ep/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Relebogile Mabotja" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Relebogile Mabotja" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/relebogile-mabotja-new-music-still-me.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="text-category-celebrity-news bg-category-celebrity-news md:bg-transparent">
Celebs And Viral </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/relebogile-mabotja-marks-40th-birthday-with-debut-ep/" target="_self">
‘Music has always been my first love’: Relebogile Mabotja marks 40th birthday with debut EP </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/technology/us-deal-china-control-tiktok/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="US China TikTok" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="US China TikTok" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/TikTok-1200x800-1.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/technology/" class="text-category-technology bg-category-technology md:bg-transparent">
Tech and Science </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/technology/us-deal-china-control-tiktok/" target="_self">
US announces deal with China to take control of TikTok </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/mitchum-deodorants-recalled-skin-irritation/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Mitchum deodorants recalled after skin irritation reports" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Mitchum deodorants recalled after skin irritation reports" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Mitchum-Deodrant-Recalls.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="text-category-lifestyle bg-category-lifestyle md:bg-transparent">
Lifestyle </a>
</span>
<h2>
<a href="https://www.citizen.co.za/lifestyle/mitchum-deodorants-recalled-skin-irritation/" target="_self">
Mitchum deodorants recalled after skin irritation reports </a>
</h2>
</div>
<footer>
2 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/watch-boom-shaka-honoured-at-basha-uhuru-festival-celebrating-music-fashion-and-culture/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Boom Shaka" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Boom Shaka" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/boom-shaka-basha-uhuru.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/watch-boom-shaka-honoured-at-basha-uhuru-festival-celebrating-music-fashion-and-culture/" target="_self">
WATCH: Boom Shaka honoured at Basha Uhuru festival celebrating music, fashion and culture </a>
</h2>
</div>
<footer>
3 days ago </footer>
</div>
</article>
</div>
<div class="card">
<article class="layout-dual" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/how-andile-bhalas-indonesian-exhibition-pays-tribute-to-his-late-mother/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Andile Bhala" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Andile Bhala" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Andile-Bhala-Indonesia-exhibition.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
</header>
<div class="content-wrapper">
<div class="content">
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="text-category-entertainment bg-category-entertainment md:bg-transparent">
Entertainment </a>
</span>
<h2>
<a href="https://www.citizen.co.za/entertainment/how-andile-bhalas-indonesian-exhibition-pays-tribute-to-his-late-mother/" target="_self">
How Andile Bhala’s Indonesian exhibition pays tribute to his late mother </a>
</h2>
</div>
<footer>
3 days ago </footer>
</div>
</article>
</div>
</div>
<div class="category-lead-2-after-posts-wrapper">
<div
id="google-ad-m-og-mpu3-to-close"
class="text-center mb-2 ">
<div id="google-ad-m-og-mpu3">
<script type="application/javascript">
googletag.cmd.push(function() {
googletag.display('google-ad-m-og-mpu3');
});
</script>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="category-lead-three-wrapper">
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-4">
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/watch-dj-fresh-and-thuli-p-steal-the-show-at-the-polo-with-surprise-dj-sets/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="DJ Fresh and Thuli P polo inanda" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="DJ Fresh and Thuli P polo inanda" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/DJ-fresh-and-Thuli-P.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="bg-category-lifestyle">
Lifestyle </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/watch-dj-fresh-and-thuli-p-steal-the-show-at-the-polo-with-surprise-dj-sets/" target="_self">
WATCH: DJ Fresh and Thuli P steal the show at the polo with surprise DJ sets </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/lebo-m-reportedly-calls-off-engagement-to-fiancee-malefu-mel-ntsala-again/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Lebo M and Mel Ntsala" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Lebo M and Mel Ntsala" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/lebo-m-calls-off-engagement.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/celebrity-news/" class="bg-category-celebrity-news">
Celebs And Viral </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/celebrity-news/lebo-m-reportedly-calls-off-engagement-to-fiancee-malefu-mel-ntsala-again/" target="_self">
Lebo M reportedly calls off engagement to fiancée Malefu ‘Mel’ Ntsala again </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/entertainment/theatre-production-tackling-child-trafficking-interactive-learning-kids/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Innocence Lost cast child trafficking" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Innocence Lost cast child trafficking" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Child-trafficking-childrens-theatre.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/entertainment/" class="bg-category-entertainment">
Entertainment </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/entertainment/theatre-production-tackling-child-trafficking-interactive-learning-kids/" target="_self">
How theatre production is tackling child trafficking </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/technology/sa-g20-meetings-digital-economy-ai-innovation-cape-town/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI.jpg 1500w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/G20-AI.jpg 1500w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/technology/" class="bg-category-technology">
Tech and Science </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/technology/sa-g20-meetings-digital-economy-ai-innovation-cape-town/" target="_self">
SA to host G20 meetings on digital economy, AI and innovation in Cape Town </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/health/men-likely-to-leave-sick-spouse/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Supportive affection or a kiss goodbye? Picture: iStock" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Supportive affection or a kiss goodbye? Picture: iStock" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/iStock-465505217-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/health/" class="bg-category-health">
Health </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/health/men-likely-to-leave-sick-spouse/" target="_self">
Why men are more likely to leave a sick spouse, studies reveal </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/fatherhood-is-the-best-feeling-jeremy-loops-on-music-family-and-loving-being-south-african/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Jeremy Loops performs during the 5FM Joburg Live Loudin Johannesburg, South Africa. Picture: Gallo Images / Lefty Shivambu" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-1200x799.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-scaled.jpg 1803w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-768x511.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-1536x1022.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Jeremy Loops performs during the 5FM Joburg Live Loudin Johannesburg, South Africa. Picture: Gallo Images / Lefty Shivambu" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-1200x799.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-scaled.jpg 1803w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-768x511.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-1536x1022.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/ED_0080871-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="bg-category-lifestyle">
Lifestyle </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/fatherhood-is-the-best-feeling-jeremy-loops-on-music-family-and-loving-being-south-african/" target="_self">
‘Fatherhood is the best feeling’: Jeremy Loops on music, family and loving life as a South African </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-meat-free-monday-tangy-avocado-3-bean-salad/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="3 bean salad, Picture supplied" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-825x550.jpg 825w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="3 bean salad, Picture supplied" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-1200x800.jpg 1200w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-scaled.jpg 1800w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-1536x1024.jpg 1536w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Avo3Bean2-1-825x550.jpg 825w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/" class="bg-category-recipes">
Recipes </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/food-and-drink/recipes/recipe-of-the-day-meat-free-monday-tangy-avocado-3-bean-salad/" target="_self">
Recipe of the day: Tangy avocado 3-bean salad </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
<div class="card">
<article class="layout-normal" data-tb-region-item>
<header>
<div class="thumbnail-wrapper ">
<a href="https://www.citizen.co.za/lifestyle/i-dont-have-any-regrets-enhle-mbali-mlotshwa-apologises-but-stands-by-her-use-of-the-k-word/" target="_self">
<img width="300" height="200" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20300%20200'%3E%3C/svg%3E" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Enhle Mbali Mlotshwa" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" data-lazy-srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word.jpg 1200w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-300x200.jpg" /><noscript><img width="300" height="200" src="https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-300x200.jpg" class="attachment-premium-standard size-premium-standard wp-post-image" alt="Enhle Mbali Mlotshwa" onerror="jQuery( this ).removeAttr( 'srcset' );" decoding="async" srcset="https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-300x200.jpg 300w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-768x512.jpg 768w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-456x304.jpg 456w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word-825x550.jpg 825w, https://media.citizen.co.za/wp-content/uploads/2025/09/Enhle-k-word.jpg 1200w" sizes="(max-width: 300px) 100vw, 300px" /></noscript> </a>
</div>
<span class="category">
<a href="https://www.citizen.co.za/lifestyle/" class="bg-category-lifestyle">
Lifestyle </a>
</span>
</header>
<div class="content">
<h2>
<a href="https://www.citizen.co.za/lifestyle/i-dont-have-any-regrets-enhle-mbali-mlotshwa-apologises-but-stands-by-her-use-of-the-k-word/" target="_self">
‘I don’t have any regrets’: Enhle Mbali Mlotshwa apologises but stands by her use of the k-word </a>
</h2>
</div>
<footer>
3 days ago </footer>
</article>
</div>
</div>
</div>
<div class="more-posts">
<a href="https://www.citizen.co.za/lifestyle/page/2/" >MORE ARTICLES</a> </div>
<!-- Start sidebar 'category-after-content' -->
<div class="category-after-content-wrapper">
</div>
<!-- End sidebar 'category-after-content' -->
<div class="scroll-to-top">
<a href="#">
<i class="citizenicons-circle-arrow-up"></i>
</a>
</div>
</div>
</main>
<footer data-wpr-lazyrender="1" class="main-footer">
<div class="footer-wrapper">
<div class="footer-cols">
<div>
<a href="/">
<img class="w-48 pb-4 mx-auto md:ml-0" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Citizen logo in footer" data-lazy-src="https://media.citizen.co.za/assets/img/citizen-logo.png" /><noscript><img class="w-48 pb-4 mx-auto md:ml-0" src="https://media.citizen.co.za/assets/img/citizen-logo.png" alt="Citizen logo in footer" /></noscript>
</a>
<div class="footer-socials">
<a target="_blank" href="https://www.facebook.com/TheCitizenNewsSA/">
<i class="citizenicons-facebook-f"></i>
</a>
<a target="_blank" href="https://twitter.com/TheCitizen_News">
<i class="citizenicons-x-twitter"></i>
</a>
<a target="_blank" href="https://en.wikipedia.org/wiki/The_Citizen_(South_African_newspaper)">
<i class="citizenicons-wikipedia-w"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/company/citizen/">
<i class="citizenicons-linkedin"></i>
</a>
<a target="_blank" href="https://flipboard.com/@TheCitizenNews">
<i class="citizenicons-flipboard"></i>
</a>
<a target="_blank" href="https://www.instagram.com/thecitizen_news/">
<i class="citizenicons-instagram"></i>
</a>
<a target="_blank" href="https://www.youtube.com/channel/UC6W8rnMBwnzioz-3-8jH0-w">
<i class="citizenicons-youtube"></i>
</a>
<a target="_blank" href="https://whatsapp.com/channel/0029VaC6h5cGpLHZ59q2Ei2Q">
<i class="citizenicons-whatsapp"></i>
</a>
<a target="_blank" href="https://www.tiktok.com/@thecitizen_news?lang=en">
<i class="citizenicons-tiktok"></i>
</a>
</div>
</div>
<div class="column-one">
<div class="textwidget custom-html-widget"><div class="row">
<div class="col-5">
<a target=”_blank” href="https://www.iabsa.net/home/"><img class="img-fluid" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="IAB SOUTH AFRICA logo" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-IAB-SOUTH-AFRICA.png" /><noscript><img class="img-fluid" src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-IAB-SOUTH-AFRICA.png" alt="IAB SOUTH AFRICA logo" /></noscript></a>
<a target="_blank" href="https://presscouncil.org.za/" rel="nofollow"><img class="img-fluid mt-3" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Press Council logo" data-lazy-src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-Press-Council.png" /><noscript><img class="img-fluid mt-3" src="https://media.citizen.co.za/wp-content/uploads/2021/04/The-Citizen-Press-Council.png" alt="Press Council logo" /></noscript></a>
</div>
</div></div><amp-embed width=100 height=100
type='taboola'
layout='responsive'
data-publisher='caxtondigital-thecitizen'
data-mode='alternating-thumbnails-a'
data-placement='Below Article Monetisation Feed'
data-target_type='mix'
data-article='auto'>
</amp-embed> </div>
<div class="column-two">
<div class="menu-footer-about-menu-container"><ul id="menu-footer-about-menu" class="menu"><li id="menu-item-2464221" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464221"><a href="https://www.citizen.co.za/about-us/">About us</a></li>
<li id="menu-item-2464224" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464224"><a href="https://www.citizen.co.za/contact-us/">Contact us</a></li>
<li id="menu-item-3411779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3411779"><a href="https://www.citizen.co.za/authors/">Our team</a></li>
<li id="menu-item-3384884" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3384884"><a href="https://www.citizen.co.za/newsletter-subscription/">Newsletters</a></li>
<li id="menu-item-2464223" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464223"><a href="https://www.citizen.co.za/code-of-conduct/">Code of conduct</a></li>
<li id="menu-item-2464222" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464222"><a href="https://www.citizen.co.za/jobs-at-the-citizen/">Jobs at The Citizen</a></li>
<li id="menu-item-2464225" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2464225"><a href="https://www.citizen.co.za/advertising/">Advertising rate card</a></li>
<li id="menu-item-3962559" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3962559"><a href="https://www.citizen.co.za/faqs/">FAQs</a></li>
<li id="menu-item-3584578" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-3584578"><a rel="privacy-policy" href="https://www.citizen.co.za/privacy-policy/">Privacy policy</a></li>
<li id="menu-item-3584577" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3584577"><a href="https://www.citizen.co.za/terms-and-conditions/">Terms and conditions</a></li>
</ul></div> </div>
<div class="column-three">
<div class="menu-footer-col-3-menu-container"><ul id="menu-footer-col-3-menu" class="menu"><li id="menu-item-2464226" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464226"><a href="https://www.citizen.co.za/news/">NEWS</a></li>
<li id="menu-item-2464228" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464228"><a href="https://www.citizen.co.za/business/">BUSINESS</a></li>
<li id="menu-item-2464229" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464229"><a href="https://www.citizen.co.za/sport/">SPORT</a></li>
<li id="menu-item-2464230" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464230"><a href="https://www.citizen.co.za/sport/soccer/">PHAKAAATHI</a></li>
<li id="menu-item-3411742" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-3411742"><a href="https://www.citizen.co.za/lifestyle/" aria-current="page">LIFESTYLE</a></li>
</ul></div> </div>
<div class="column-four">
<div class="menu-footer-col-4-menu-container"><ul id="menu-footer-col-4-menu" class="menu"><li id="menu-item-3411744" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3411744"><a href="https://www.citizen.co.za/entertainment/">ENTERTAINMENT</a></li>
<li id="menu-item-2464232" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464232"><a href="https://www.citizen.co.za/travel/">TRAVEL</a></li>
<li id="menu-item-2464233" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464233"><a href="https://www.citizen.co.za/multimedia/">MULTIMEDIA</a></li>
<li id="menu-item-2464234" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464234"><a href="https://www.citizen.co.za/motoring/">MOTORING</a></li>
<li id="menu-item-2464235" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2464235"><a href="https://www.citizen.co.za/sport/horses/">HORSES</a></li>
<li id="menu-item-3411774" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3411774"><a href="https://www.citizen.co.za/competitions/">COMPETITIONS</a></li>
</ul></div> </div>
</div>
<div class="w-full py-4 mx-auto">
<hr class="border-t border-citizen-dark opacity-20 py-4" />
<p class="text-sm text-citizen-dark text-center">
<i class="citizenicons-copyright"></i>
2025 The Citizen. All Rights Reserved.
</p>
</div>
</div>
</footer>
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/citizen-2023\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<!-- IO Integration -->
<script async src="https://cdn.onthe.io/io.js/NgBcKVJBj50g"></script><script>
window._io_config = window._io_config || {}; window._io_config["0.2.0"] = window._io_config["0.2.0"] || []; window._io_config["0.2.0"]
.push( {
page_url: "https://www.citizen.co.za/lifestyle/",
page_url_canonical: "https://www.citizen.co.za/lifestyle/",
page_title: "Lifestyle",
page_type: "default",
page_language: "en",
user_status: "anonymous",
} );
</script>
<!-- IO Integration -->
<script type="text/javascript" src="https://www.citizen.co.za/wp-content/themes/citizen-2023/dist/assets/main-C7vbeunP.js?ver=2.0" id="main-js" data-rocket-defer defer></script>
<script type="text/javascript" id="sign-in-js-extra">
/* <![CDATA[ */
var citizen_premium = {"nonce":"694209437a","ajaxurl":"https:\/\/www.citizen.co.za\/wp-admin\/admin-ajax.php","redirect_url":"https:\/\/premium.citizen.co.za\/my-account"};
/* ]]> */
</script>
<script type="text/javascript" src="https://www.citizen.co.za/wp-content/themes/citizen-2023/assets/js/sign-in.js?ver=2.1" id="sign-in-js" data-rocket-defer defer></script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.citizen.co.za/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="Play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=["elections-map-2024.png"];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script></div>
</body>
</html>
<!-- Cached for great performance - Debug: cached@1758249374 -->